From 67c660a9ec25561493450d11584ea4b18b64fda2 Mon Sep 17 00:00:00 2001 From: "Vladimir.Orlov" Date: Tue, 7 Apr 2015 13:15:47 +0300 Subject: [PATCH] Updated the order for looking the location .vmoptions files in the .sh launcher. --- bin/scripts/unix/idea.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/scripts/unix/idea.sh b/bin/scripts/unix/idea.sh index 8a290a16e8af..5d91790ce85c 100755 --- a/bin/scripts/unix/idea.sh +++ b/bin/scripts/unix/idea.sh @@ -137,7 +137,7 @@ fi VM_OPTIONS="" VM_OPTIONS_FILES_USED="" -for vm_opts_file in "$IDE_BIN_HOME/@@vm_options@@$BITS.vmoptions" "$@@product_uc@@_VM_OPTIONS" "$HOME/.@@system_selector@@/@@vm_options@@$BITS.vmoptions"; do +for vm_opts_file in "$IDE_BIN_HOME/@@vm_options@@$BITS.vmoptions" "$HOME/.@@system_selector@@/@@vm_options@@$BITS.vmoptions" "$@@product_uc@@_VM_OPTIONS"; do if [ -r "$vm_opts_file" ]; then VM_OPTIONS_DATA=`"$CAT" "$vm_opts_file" | "$GREP" -v "^#.*" | "$TR" '\n' ' '` VM_OPTIONS="$VM_OPTIONS $VM_OPTIONS_DATA"