summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorisoraqathedh <isoraqathedh@users.noreply.github.com>2019-06-08 21:21:22 +0800
committerGitHub <noreply@github.com>2019-06-08 21:21:22 +0800
commitd87bd4b58837cf99416e08345def85a9f72379a4 (patch)
tree15b6365a7c48ef86da1405a57dd213b9e1572f8e /application
parent86850ef5d0195fb022cda7481b43496da722911c (diff)
downloadMultiMC-d87bd4b58837cf99416e08345def85a9f72379a4.tar
MultiMC-d87bd4b58837cf99416e08345def85a9f72379a4.tar.gz
MultiMC-d87bd4b58837cf99416e08345def85a9f72379a4.tar.lz
MultiMC-d87bd4b58837cf99416e08345def85a9f72379a4.tar.xz
MultiMC-d87bd4b58837cf99416e08345def85a9f72379a4.zip
Update run.sh
Pass command line arguments through to the executable
Diffstat (limited to 'application')
-rwxr-xr-xapplication/package/ubuntu/multimc/opt/multimc/run.sh6
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