OSDN Git Service

[update] : Added messages.
authorhayao <shun819.mail@gmail.com>
Thu, 16 Apr 2020 01:38:53 +0000 (10:38 +0900)
committerhayao <shun819.mail@gmail.com>
Thu, 16 Apr 2020 01:38:53 +0000 (10:38 +0900)
wizard.sh

index cbbfe71..e11e657 100755 (executable)
--- a/wizard.sh
+++ b/wizard.sh
@@ -6,8 +6,14 @@ nobuild=false
 
 while getopts 'xn' arg; do
     case "${arg}" in
-        n) nobuild=true ;;
-        x) set -x ;;
+        n)
+            nobuild=true
+            echo "シミュレーションモードを有効化しました"
+            ;;
+        x)
+            set -x 
+            echo "デバッグモードを有効化しました"
+            ;;
     esac
 done