From ce555c11f392aab6dd4291d83b0c7126a82ed738 Mon Sep 17 00:00:00 2001 From: Silas Davis <silas@erisindustries.com> Date: Fri, 9 Sep 2016 22:14:41 +0100 Subject: [PATCH] Make sure command-line arguments expanded correctly --- bin/start_eris_db | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/start_eris_db b/bin/start_eris_db index fd8cc17c..6dc34b88 100644 --- a/bin/start_eris_db +++ b/bin/start_eris_db @@ -83,5 +83,5 @@ case $CMD in ;; esac -echo "running eris-db serve --debug $CONFIG_OPTS $@" -eris-db serve --debug $CONFIG_OPTS $@ \ No newline at end of file +echo "running eris-db serve --debug $CONFIG_OPTS \"$@\"" +eris-db serve --debug $CONFIG_OPTS "$@" \ No newline at end of file -- GitLab