From 1b882e0923f3111e8d8478e439700398b4f45eec Mon Sep 17 00:00:00 2001 From: Luke Bakken Date: Mon, 30 Oct 2017 16:44:56 -0700 Subject: Fix printf statement. Backslash is not necessary and dash is picky about it --- priv/templates/extended_bin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/priv/templates/extended_bin b/priv/templates/extended_bin index 0482359..19d9d29 100755 --- a/priv/templates/extended_bin +++ b/priv/templates/extended_bin @@ -460,7 +460,7 @@ case "$1" in HEART_OPTION="start_boot" ;; esac - ARGS="$(printf "\'%s\' " "$@")" + ARGS="$(printf "'%s' " "$@")" # Export the HEART_COMMAND HEART_COMMAND="\"$RELEASE_ROOT_DIR/bin/$REL_NAME\" \"$HEART_OPTION\" $ARGS" -- cgit v1.2.3