From 41836fb64770c3b6d1042fcd0579afbfd3d9783b Mon Sep 17 00:00:00 2001 From: Kenny Ballou Date: Thu, 10 Oct 2019 14:32:09 -0600 Subject: tools: add catch all case to print usage Signed-off-by: Kenny Ballou --- tools/bin/deploy-stack.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/bin/deploy-stack.sh b/tools/bin/deploy-stack.sh index 06faf80..ef8f5ff 100755 --- a/tools/bin/deploy-stack.sh +++ b/tools/bin/deploy-stack.sh @@ -41,4 +41,8 @@ case $1 in undeploy) undeploy ;; + *) + echo "Available commands are DEPLOY | CHANGESET | UNDEPLOY"; + exit 1; + ;; esac -- cgit v1.2.1