Skip to content
Snippets Groups Projects
Commit de9ab27f authored by Jens Nolte's avatar Jens Nolte
Browse files

Add --keep-going flag passthrough to deploy script

parent a44f84c1
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@ usage() {
positional=()
via_hostname=""
substitute_on_destination=""
keep_going=""
show_trace=""
while [[ $# -gt 0 ]]
do
......@@ -41,6 +42,9 @@ do
--substitute-on-destination|-s)
substitute_on_destination="--substitute-on-destination"
;;
--keep-going)
keep_going="--keep-going"
;;
--show-trace)
show_trace="--show-trace"
;;
......@@ -75,7 +79,7 @@ fi
operation=$original_operation
set_profile=""
reboot=""
readonly common_nix_flags=(--log-format bar-with-logs)
readonly common_nix_flags=(--log-format bar-with-logs $keep_going)
if [[ "$operation" = "switch" || "$operation" = "boot" ]]
then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment