Skip to content

Commit

Permalink
Merge pull request #51 from nevar/fix_vm_args
Browse files Browse the repository at this point in the history
Fix search of vm.args
  • Loading branch information
tsloughter committed Sep 23, 2013
2 parents ca03701 + 4a1ef26 commit 8a60327
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rlx_prv_assembler.erl
Original file line number Diff line number Diff line change
Expand Up @@ -679,9 +679,9 @@ find_sys_config() {
}
# Use $CWD/vm.args if exists, otherwise releases/APP_VSN/vm.args, or else etc/vm.args
if [ -e \"$CALLER_DIR/vm.args\" ]; then
VMARGS_PATH=$CALLER_DIR/vm.args
USE_DIR=$CALLER_DIR
if [ -e \"$RELEASE_ROOT_DIR/vm.args\" ]; then
VMARGS_PATH=$RELEASE_ROOT_DIR/vm.args
USE_DIR=$RELEASE_ROOT_DIR
else
USE_DIR=$REL_DIR
if [ -e \"$REL_DIR/vm.args\" ]; then
Expand Down

0 comments on commit 8a60327

Please sign in to comment.