diff options
author | Tristan Sloughter <[email protected]> | 2014-05-22 12:29:36 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-05-22 12:29:36 -0500 |
commit | b7c8c04ec261afc01b99e71db174d945f93632de (patch) | |
tree | cb4cede99ffe4f7492c8b04ca4f7bb215a317468 /priv/templates/extended_bin.dtl | |
parent | 6a50af3feb7186d86365aafeafadb3822973e343 (diff) | |
download | relx-b7c8c04ec261afc01b99e71db174d945f93632de.tar.gz relx-b7c8c04ec261afc01b99e71db174d945f93632de.tar.bz2 relx-b7c8c04ec261afc01b99e71db174d945f93632de.zip |
remove quoting that breaks start scripts
Diffstat (limited to 'priv/templates/extended_bin.dtl')
-rw-r--r-- | priv/templates/extended_bin.dtl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/templates/extended_bin.dtl b/priv/templates/extended_bin.dtl index 99014fd..c2fd297 100644 --- a/priv/templates/extended_bin.dtl +++ b/priv/templates/extended_bin.dtl @@ -19,7 +19,7 @@ find_erts_dir() { ROOTDIR="$RELEASE_ROOT_DIR" else local erl="$(which erl)" - local erl_root="$("$erl" -noshell -eval "io:format(\\"~s\\", [code:root_dir()])." -s init stop)" + local erl_root=$("$erl" -noshell -eval "io:format(\"~s\", [code:root_dir()])." -s init stop) ERTS_DIR="$erl_root/erts-$ERTS_VSN" ROOTDIR="$erl_root" fi |