mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Fixing issue #3; make sure to properly escape simplenode related files. Patch provided by cstar..thanks!
This commit is contained in:
parent
1582f2e243
commit
7cf7481a68
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ APP_VSN=${START_ERL#* }
|
|||
|
||||
BINDIR=$ROOTDIR/erts-$ERTS_VSN/bin
|
||||
EMU=beam
|
||||
PROGNAME=`echo $0 | sed 's/.*\///'`
|
||||
PROGNAME=`echo $0 | sed 's/.*\\///'`
|
||||
CMD="$BINDIR/erlexec"
|
||||
export EMU
|
||||
export ROOTDIR
|
||||
|
|
|
@ -103,7 +103,7 @@ case "$1" in
|
|||
ROOTDIR=$RUNNER_BASE_DIR
|
||||
BINDIR=$ROOTDIR/erts-$ERTS_VSN/bin
|
||||
EMU=beam
|
||||
PROGNAME=`echo $0 | sed 's/.*\///'`
|
||||
PROGNAME=`echo $0 | sed 's/.*\\///'`
|
||||
CMD="$BINDIR/erlexec -boot $RUNNER_BASE_DIR/releases/$APP_VSN/$SCRIPT -embedded -config $RUNNER_ETC_DIR/app.config -args_file $RUNNER_ETC_DIR/vm.args -- ${1+"$@"}"
|
||||
export EMU
|
||||
export ROOTDIR
|
||||
|
|
Loading…
Reference in a new issue