aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Bakken <[email protected]>2017-10-30 16:44:56 -0700
committerLuke Bakken <[email protected]>2017-10-30 16:44:56 -0700
commit1b882e0923f3111e8d8478e439700398b4f45eec (patch)
treea1a53963600e6d012fe0ca3a87390c418051a714
parent19ae6a4c98a131aab84ed9922c307ab3f0eebec7 (diff)
downloadrelx-1b882e0923f3111e8d8478e439700398b4f45eec.tar.gz
relx-1b882e0923f3111e8d8478e439700398b4f45eec.tar.bz2
relx-1b882e0923f3111e8d8478e439700398b4f45eec.zip
Fix printf statement. Backslash is not necessary and dash is picky about it
-rwxr-xr-xpriv/templates/extended_bin2
1 files changed, 1 insertions, 1 deletions
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"