From 2ef2ca0b3111bc9c5af11939f62dba4fc9cea49c Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sun, 19 Oct 2025 19:03:37 +0200 Subject: [PATCH] allow spaces in ssh opts Signed-off-by: Kiara Grouwstra --- deployment/run/ssh-single-host/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/run/ssh-single-host/run.sh b/deployment/run/ssh-single-host/run.sh index 84c3f7cb..19a3564a 100755 --- a/deployment/run/ssh-single-host/run.sh +++ b/deployment/run/ssh-single-host/run.sh @@ -47,4 +47,4 @@ NIX_SSHOPTS="${sshOptsAsterisk[*]}" nix-copy-closure --to "$destination" "$outPa # shellcheck disable=SC2029 ssh "${sshOptsAt[@]}" "$destination" "nix-env --profile /nix/var/nix/profiles/system --set $outPath" # shellcheck disable=SC2029 -ssh -o "ConnectTimeout=5" -o "ServerAliveInterval=1" "${sshOptsAt[@]}" "$destination" "nohup env $outPath/bin/switch-to-configuration switch &" 2>&1 +ssh -o "ConnectTimeout=5" -o "ServerAliveInterval=1" "${sshOptsAt[@]}" "$destination" "nohup $outPath/bin/switch-to-configuration switch &" 2>&1