Skip to content
Snippets Groups Projects
Commit 41c975e4 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

Fix #337 Could not use quoted values for commands

parent ed7c9390
Branches
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ duniter() { ...@@ -63,7 +63,7 @@ duniter() {
#--------------------------------- #---------------------------------
*) *)
$NODE "$DUNITER_DIR/bin/duniter" $* $NODE "$DUNITER_DIR/bin/duniter" "$@"
;; ;;
esac esac
...@@ -72,5 +72,5 @@ duniter() { ...@@ -72,5 +72,5 @@ duniter() {
# If the script was launched with parameters, try to launch the Duniter command # If the script was launched with parameters, try to launch the Duniter command
if [ ! -z $1 ]; then if [ ! -z $1 ]; then
duniter $* duniter "$@"
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment