IDEA-116503 (some improvements to Unix shell scripts)

This commit is contained in:
Roman Shevchenko
2013-11-16 19:52:44 +01:00
parent 4403959ba5
commit 8962e56f9c
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -5,7 +5,7 @@
# ------------------------------------------------------
#
export DEFAULT_PROJECT_PATH=`pwd`
export DEFAULT_PROJECT_PATH="$(pwd)"
IDE_BIN_HOME="$(dirname "$0")"
exec "$IDE_BIN_HOME/../Contents/MacOS/@@script_name@@" inspect $*
IDE_BIN_HOME="${0%/*}"
exec "$IDE_BIN_HOME/../Contents/MacOS/@@script_name@@" inspect "$@"
+1 -1
View File
@@ -162,6 +162,6 @@ export LD_LIBRARY_PATH
# Run the IDE.
# ---------------------------------------------------------------------
while true ; do
eval "$JDK/bin/java" $ALL_JVM_ARGS -Djb.restart.code=88 $MAIN_CLASS_NAME $*
eval "$JDK/bin/java" $ALL_JVM_ARGS -Djb.restart.code=88 $MAIN_CLASS_NAME "$@"
test $? -ne 88 && break
done
+3 -3
View File
@@ -5,7 +5,7 @@
# ------------------------------------------------------
#
export DEFAULT_PROJECT_PATH=`pwd`
export DEFAULT_PROJECT_PATH="$(pwd)"
IDE_BIN_HOME="$(dirname "$0")"
exec "$IDE_BIN_HOME/@@script_name@@" inspect $*
IDE_BIN_HOME="${0%/*}"
exec "$IDE_BIN_HOME/@@script_name@@" inspect "$@"