don't hard fail on single failed deployment

This commit is contained in:
oxapentane - 2023-06-14 23:36:06 +02:00
parent c588f49dc5
commit 5d503c4f4f
Signed by: oxapentane
GPG Key ID: 91FA5E5BF9AA901C
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ let
nukeAll = lib.mapAttrs'
(name: scripts: lib.nameValuePair (name) (pkgs.writeScriptBin "${name}" ''
#!${pkgs.runtimeShell}
set -ex
set -x
${scripts}
''))