From 9931a3931a56f089f405c731add771497a51fe52 Mon Sep 17 00:00:00 2001 From: cousteau Date: Mon, 29 Feb 2016 01:26:10 +0100 Subject: [PATCH] Use "$@" in shell script Use "$@" in this shell script instead of "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9". --- build/cmd/dist/processing | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/cmd/dist/processing b/build/cmd/dist/processing index 8f694415409..eccb9053207 100644 --- a/build/cmd/dist/processing +++ b/build/cmd/dist/processing @@ -1,4 +1,4 @@ - #!/bin/sh +#!/bin/sh APPDIR="$(dirname -- "${0}")" @@ -17,4 +17,4 @@ export PATH="${APPDIR}/java/bin:${PATH}" #java processing.app.Commander $* # if you know a better way to do this, submit it to dev.processing.org/bugs -java processing.app.Commander "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" +java processing.app.Commander "$@"