Merge pull request #2684 from isoraqathedh/patch-1

Pass command line arguments through to the executable
This commit is contained in:
Petr Mrázek
2019-06-08 15:53:01 +02:00
committed by GitHub

View File

@ -22,12 +22,12 @@ deploy() {
runmmc() {
cd ${INSTDIR}
./MultiMC
./MultiMC "$@"
}
if [[ ! -f ${INSTDIR}/MultiMC ]]; then
deploy
runmmc
runmmc "$@"
else
runmmc
runmmc "$@"
fi