From 3e3d87e7b63510c47a3605549b346d4d7a32a641 Mon Sep 17 00:00:00 2001 From: keskiju Date: Thu, 12 Dec 2024 23:10:34 +0200 Subject: [PATCH] fix(gcp): skip auth on taito_continue mode --- src/execute-command | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/execute-command b/src/execute-command index 626c6257..c46cecb1 100755 --- a/src/execute-command +++ b/src/execute-command @@ -68,6 +68,7 @@ do ;; -c|--continue) continue=true + taito_continue=true shift || : ;; -v|--verbose) @@ -208,7 +209,7 @@ fi # Export some variables to be used in configs and command execution export taito_default_password="${taito_default_password}" -export taito_continue="true" +export taito_continue="${taito_continue:-false}" export taito_skip_override="${skip_override}" export taito_command="${command}" export taito_orig_command="${orig_command}"