diff options
Diffstat (limited to 'priv/templates/simplenode.erl.script')
-rw-r--r-- | priv/templates/simplenode.erl.script | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/priv/templates/simplenode.erl.script b/priv/templates/simplenode.erl.script index e500626..6f65e3f 100644 --- a/priv/templates/simplenode.erl.script +++ b/priv/templates/simplenode.erl.script @@ -1,10 +1,10 @@ -#!/bin/bash +#!/bin/sh ## This script replaces the default "erl" in erts-VSN/bin. This is necessary ## as escript depends on erl and in turn, erl depends on having access to a ## bootscript (start.boot). Note that this script is ONLY invoked as a side-effect ## of running escript -- the embedded node bypasses erl and uses erlexec directly -## (as it should). +## (as it should). ## ## Note that this script makes the assumption that there is a start_clean.boot ## file available in $ROOTDIR/release/VSN. @@ -31,4 +31,4 @@ export ROOTDIR export BINDIR export PROGNAME -exec $CMD -boot $ROOTDIR/releases/$APP_VSN/start_clean ${1+"$@"}
\ No newline at end of file +exec $CMD -boot $ROOTDIR/releases/$APP_VSN/start_clean ${1+"$@"} |