diff options
author | Tristan Sloughter <[email protected]> | 2014-10-28 18:13:51 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-10-28 18:13:51 -0500 |
commit | 0b5c8714c76c10bd92463b4d2ba9431e34af650e (patch) | |
tree | 2032f756778ab07a1c00bb767780a5614699a295 /priv/templates/extended_bin.dtl | |
parent | 664f448c752a65e5acbd049046518453499af015 (diff) | |
parent | 61c58bd5a0da26624464b0b97c47d95a718ff02f (diff) | |
download | relx-0b5c8714c76c10bd92463b4d2ba9431e34af650e.tar.gz relx-0b5c8714c76c10bd92463b4d2ba9431e34af650e.tar.bz2 relx-0b5c8714c76c10bd92463b4d2ba9431e34af650e.zip |
Merge pull request #242 from RomanShestakov/master
turn args from string to list - related to https://github.com/erlware/re...
Diffstat (limited to 'priv/templates/extended_bin.dtl')
-rw-r--r-- | priv/templates/extended_bin.dtl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/priv/templates/extended_bin.dtl b/priv/templates/extended_bin.dtl index e4f537a..abb823d 100644 --- a/priv/templates/extended_bin.dtl +++ b/priv/templates/extended_bin.dtl @@ -317,7 +317,7 @@ case "$1" in -args_file "$VMARGS_PATH" # Dump environment info for logging purposes - echo "Exec: $@ -- ${1+$ARGS}" + echo "Exec: $@" -- ${1+$ARGS} echo "Root: $ROOTDIR" # Log the startup @@ -325,7 +325,7 @@ case "$1" in logger -t "$REL_NAME[$$]" "Starting up" # Start the VM - exec "$@" -- "${1+$ARGS}" + exec "$@" -- ${1+$ARGS} ;; foreground) |