From 192f34bc66e043994912cf823ae5152d60e8f299 Mon Sep 17 00:00:00 2001 From: GoFish Date: Sat, 12 Dec 2020 19:39:10 +0000 Subject: [PATCH] Fix for GIT_SSH_COMMAND variable declaration --- windows_to_go.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows_to_go.ps1 b/windows_to_go.ps1 index d377f71..b6f8ece 100644 --- a/windows_to_go.ps1 +++ b/windows_to_go.ps1 @@ -39,7 +39,7 @@ if (-not (Test-Path -Path "$env:userprofile\.ssh" -PathType Container)) { } # Clone pass repo for QtPass -set GIT_SSH_COMMAND=ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i "$env:userprofile\.ssh\windows_to_go_ssh_pass_ed25519" +set GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i $env:userprofile\.ssh\windows_to_go_ssh_pass_ed25519" if (Test-Path -Path "$env:userprofile\password-store" -PathType Container) { cd "$env:userprofile\password-store" git pull