update(user/bkots):Remove unnecessary must()
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Thu, 25 Jul 2024 17:42:14 +0000 (17:42 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Thu, 25 Jul 2024 17:42:14 +0000 (17:42 +0000)
user/bkots

index cca1fd803ec7a11bc0169351e951be0caaa02b2c..b38f0ac559f1ba9a99f3bb910ae70cc1865a1aa6 100755 (executable)
@@ -200,7 +200,7 @@ showVersion() {
     vbm "DEBUG:showVersion function called."
 
     cat <<'EOF'
     vbm "DEBUG:showVersion function called."
 
     cat <<'EOF'
-bkots 2.0.0
+bkots 2.0.1
 Copyright (C) 2022 Steven Baltakatei Sandoval
 License GPLv3: GNU GPL version 3
 This is free software; you are free to change and redistribute it.
 Copyright (C) 2022 Steven Baltakatei Sandoval
 License GPLv3: GNU GPL version 3
 This is free software; you are free to change and redistribute it.
@@ -692,7 +692,7 @@ main() {
                 if [[ "$opVerbose" = "true" ]]; then declare -p cmd_temp; fi;
 
                 #### execute command
                 if [[ "$opVerbose" = "true" ]]; then declare -p cmd_temp; fi;
 
                 #### execute command
-                wait_for_jobslot && must "${cmd_temp[@]}" &
+                wait_for_jobslot && "${cmd_temp[@]}" &
                 unset cmd_temp;
                 break;
                 #ots -l "$url" --no-default-whitelist upgrade "$path_prf" && break;
                 unset cmd_temp;
                 break;
                 #ots -l "$url" --no-default-whitelist upgrade "$path_prf" && break;
@@ -728,7 +728,7 @@ main() {
                 if [[ "$opVerbose" = "true" ]]; then declare -p cmd_temp; fi;
 
                 #### execute command
                 if [[ "$opVerbose" = "true" ]]; then declare -p cmd_temp; fi;
 
                 #### execute command
-                wait_for_jobslot && must "${cmd_temp[@]}" &
+                wait_for_jobslot && "${cmd_temp[@]}" &
                 unset cmd_temp;
                 break;
                 #ots -l "$url" --no-default-whitelist verify -f "$path_src" "$path_prf" && break;
                 unset cmd_temp;
                 break;
                 #ots -l "$url" --no-default-whitelist verify -f "$path_src" "$path_prf" && break;
@@ -757,7 +757,7 @@ main() {
             if [[ "$opVerbose" = "true" ]]; then declare -p cmd_temp; fi;
 
             #### execute command
             if [[ "$opVerbose" = "true" ]]; then declare -p cmd_temp; fi;
 
             #### execute command
-            wait_for_jobslot && must "${cmd_temp[@]}" &
+            wait_for_jobslot && "${cmd_temp[@]}" &
             unset cmd_temp;
             #ots stamp "$path_src";
         else
             unset cmd_temp;
             #ots stamp "$path_src";
         else