OSDN Git Service

[fix] : Fixed old function name
authorhayao <hayao@fascode.net>
Mon, 2 Aug 2021 13:51:37 +0000 (22:51 +0900)
committerhayao <hayao@fascode.net>
Mon, 2 Aug 2021 13:51:37 +0000 (22:51 +0900)
tools/wizard.sh

index 1bc70b3..7c92d67 100755 (executable)
@@ -757,7 +757,7 @@ Function_Global_Ask_Confirm () {
     read -r Var_Local_input_yes_or_no
     case "${Var_Local_input_yes_or_no}" in
         "y" | "Y" | "yes" | "Yes" | "YES" ) :         ;;
-        "n" | "N" | "no"  | "No"  | "NO"  ) ask       ;;
+        "n" | "N" | "no"  | "No"  | "NO"  ) exit 0    ;;
         *                                 ) Function_Global_Ask_Confirm ;;
     esac
 }