From: Guo Xiang Tan Date: Wed, 21 Jun 2017 06:38:59 +0000 (+0900) Subject: Allow user arguments to be passed to stop command part 2. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=1c8ba2adfc1717f5e2d40f5d9bceeec9688f75b7;p=discourse_docker.git Allow user arguments to be passed to stop command part 2. --- diff --git a/launcher b/launcher index daf818c..f59f99e 100755 --- a/launcher +++ b/launcher @@ -688,7 +688,7 @@ case "$command" in destroy) - (set -x; $docker_path stop -t 10 $config && $docker_path rm $config) || (echo "$config was not found" && exit 0) + (set -x; $docker_path stop -t 10 $user_args $config && $docker_path rm $config) || (echo "$config was not found" && exit 0) exit 0 ;; esac