aboutsummaryrefslogtreecommitdiffstats
path: root/priv/templates/bin.dtl
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2015-04-05 10:44:05 -0500
committerTristan Sloughter <[email protected]>2015-04-05 10:44:05 -0500
commitadc9ab5decde88870abbe195f1685da23bdf1016 (patch)
tree1a2aea5cfd99f574d70d6559ea86ba5d16f83b7b /priv/templates/bin.dtl
parent66ca6c7601519862f7cad15ecab545b7c5643e61 (diff)
parent9cd4c150979d03177b5262a7da31801f0d22f877 (diff)
downloadrelx-adc9ab5decde88870abbe195f1685da23bdf1016.tar.gz
relx-adc9ab5decde88870abbe195f1685da23bdf1016.tar.bz2
relx-adc9ab5decde88870abbe195f1685da23bdf1016.zip
Merge pull request #327 from jaydoane/replace-init-stop-with-halt
Replace "-s init stop" with halt()
Diffstat (limited to 'priv/templates/bin.dtl')
-rwxr-xr-xpriv/templates/bin.dtl4
1 files changed, 2 insertions, 2 deletions
diff --git a/priv/templates/bin.dtl b/priv/templates/bin.dtl
index 3398d63..dd11707 100755
--- a/priv/templates/bin.dtl
+++ b/priv/templates/bin.dtl
@@ -17,8 +17,8 @@ find_erts_dir() {
ROOTDIR="$RELEASE_ROOT_DIR"
else
local erl="$(which erl)"
- code="io:format(\"~s\", [code:root_dir()])."
- local erl_root="$("$erl" -noshell -eval "$code" -s init stop)"
+ code="io:format(\"~s\", [code:root_dir()]), halt()."
+ local erl_root="$("$erl" -noshell -eval "$code")"
ERTS_DIR="$erl_root/erts-$ERTS_VSN"
ROOTDIR="$erl_root"
fi