diff options
author | isoraqathedh <isoraqathedh@users.noreply.github.com> | 2019-06-08 21:21:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-08 21:21:22 +0800 |
commit | d87bd4b58837cf99416e08345def85a9f72379a4 (patch) | |
tree | 15b6365a7c48ef86da1405a57dd213b9e1572f8e /application/package | |
parent | 86850ef5d0195fb022cda7481b43496da722911c (diff) | |
download | PrismLauncher-d87bd4b58837cf99416e08345def85a9f72379a4.tar.gz PrismLauncher-d87bd4b58837cf99416e08345def85a9f72379a4.tar.bz2 PrismLauncher-d87bd4b58837cf99416e08345def85a9f72379a4.zip |
Update run.sh
Pass command line arguments through to the executable
Diffstat (limited to 'application/package')
-rwxr-xr-x | application/package/ubuntu/multimc/opt/multimc/run.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/package/ubuntu/multimc/opt/multimc/run.sh b/application/package/ubuntu/multimc/opt/multimc/run.sh index f4f2fa42..c493a513 100755 --- a/application/package/ubuntu/multimc/opt/multimc/run.sh +++ b/application/package/ubuntu/multimc/opt/multimc/run.sh @@ -22,12 +22,12 @@ deploy() { runmmc() { cd ${INSTDIR} - ./MultiMC + ./MultiMC "$@" } if [[ ! -f ${INSTDIR}/MultiMC ]]; then deploy - runmmc + runmmc "$@" else - runmmc + runmmc "$@" fi |