From a3eae3daf5f1e559b1b4d51d80d7264da774d83e Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 19 Nov 2024 05:57:21 +0000 Subject: [PATCH] Fix powershell mismatch --- nix/continue.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/continue.nix b/nix/continue.nix index 995425e..6f56aef 100644 --- a/nix/continue.nix +++ b/nix/continue.nix @@ -90,7 +90,7 @@ let script = [ "packer init sources" "packer build -only=\"hyperv-iso.amd64\" -var-file=\"\${distro}\" -var build=\${BUILD} -var cpus=2 -var memory=4096 \${EXCEPT} sources" - "if (-not $?) { throw \"Error in build\")" + "if (-not $?) { throw \"Error in build\" }" ]; }; };