- Double-quote $@ to properly propagate parameters down the execution path

- Consistently pad (separate) shebang in wrapper scripts with an empty line
This commit is contained in:
Alexey Dokuchaev
2016-10-17 04:00:20 +00:00
parent f9bbf9161c
commit bbc0e7b376
17 changed files with 29 additions and 20 deletions
+1 -1
View File
@@ -43,4 +43,4 @@ if [ ! -x "${ECLIPSE_HOME}/eclipse" ]; then
exit 1
fi
JAVA_VERSION="%%JAVA_VERSION%%" JAVA_OS="%%JAVA_OS%%" PATH=${JAVA_HOME}/bin:${PATH} %%SWTGTK3OPT%% exec "${ECLIPSE_HOME}/eclipse" $@
JAVA_VERSION="%%JAVA_VERSION%%" JAVA_OS="%%JAVA_OS%%" PATH=${JAVA_HOME}/bin:${PATH} %%SWTGTK3OPT%% exec "${ECLIPSE_HOME}/eclipse" "$@"
+2 -1
View File
@@ -1,2 +1,3 @@
#!/bin/sh
exec "%%DATADIR%%/bin/pycharm.sh" $@
exec "%%DATADIR%%/bin/pycharm.sh" "$@"
+2 -1
View File
@@ -1,2 +1,3 @@
#!/bin/sh
exec "%%IDEA_HOME%%/bin/idea.sh" $@
exec "%%IDEA_HOME%%/bin/idea.sh" "$@"
+2 -1
View File
@@ -1,2 +1,3 @@
#!/bin/sh
exec "%%IDEA_HOME%%/bin/idea.sh" $@
exec "%%IDEA_HOME%%/bin/idea.sh" "$@"
+2 -1
View File
@@ -1,2 +1,3 @@
#!/bin/sh
exec java -jar "%%JAVAJARDIR%%/jd-gui.jar" $@
exec java -jar "%%JAVAJARDIR%%/jd-gui.jar" "$@"