diff --git a/sequencer/sequencer.sh b/sequencer/sequencer.sh index 4d39f6b..c33e9f9 100755 --- a/sequencer/sequencer.sh +++ b/sequencer/sequencer.sh @@ -221,7 +221,7 @@ execute() { read -p "Start: y/[n]? " answer case $answer in [yY]) - step_$1 $1 "$STEP_ARGS" + step_$1 $1 $STEP_ARGS ;; *) echo Aborting installation at step $1 @@ -229,7 +229,7 @@ execute() { ;; esac else - step_$1 $1 "$STEP_ARGS" + step_$1 $1 $STEP_ARGS fi } @@ -508,7 +508,7 @@ main() { fi fi - if [ $DRY -ne 0 ] ; then + if [ $DRY -ne 0 ] && [ $QUIET -eq 0 ] ; then echo echo " [W] Dry run active." echo " Printed commands may not be accurate (e.g. quotation incorrect)"