From e77c8b7f8027c81ca4b01c5b8287d35d310d02b4 Mon Sep 17 00:00:00 2001 From: GoFish Date: Sat, 12 Dec 2020 20:46:35 +0000 Subject: [PATCH] Use native SSH client for git as it is more up-to-date --- 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 d21bb07..9cfe24e 100644 --- a/windows_to_go.ps1 +++ b/windows_to_go.ps1 @@ -45,7 +45,7 @@ if (Test-Path -Path "$env:userprofile\password-store\*") { } # Clone pass repo for QtPass -$env:GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -i `"$env:userprofile\.ssh\windows_to_go_ssh_pass_ed25519`"" +$env:GIT_SSH_COMMAND="C:\Windows\System32\OpenSSH\ssh.exe -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