From 957d9575fdba822750e4709fd12ae87faffde035 Mon Sep 17 00:00:00 2001 From: oddlama Date: Wed, 18 Oct 2023 00:57:06 +0200 Subject: [PATCH] fix(deploy): ignore missing nvd --- pkgs/deploy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/deploy.nix b/pkgs/deploy.nix index 3dc2d5e..a8e19af 100644 --- a/pkgs/deploy.nix +++ b/pkgs/deploy.nix @@ -107,7 +107,7 @@ ssh "$host" -- "$store_path"/bin/switch-to-configuration "$ACTION" \ || echo "Error while activating new system" >&2 if [[ -n "$prev_system" ]]; then - ssh "$host" -- nvd --color always diff "$prev_system" "$store_path" + ssh "$host" -- nvd --color always diff "$prev_system" "$store_path" || true fi time_next echo " Applied ✅ $host in ''${T_LAST}s"