Browse Source

Fix for GIT_SSH_COMMAND variable declaration

master
GoFish 5 years ago
parent
commit
192f34bc66
  1. 2
      windows_to_go.ps1

2
windows_to_go.ps1

@ -39,7 +39,7 @@ if (-not (Test-Path -Path "$env:userprofile\.ssh" -PathType Container)) {
} }
# Clone pass repo for QtPass # 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) { if (Test-Path -Path "$env:userprofile\password-store" -PathType Container) {
cd "$env:userprofile\password-store" cd "$env:userprofile\password-store"
git pull git pull

Loading…
Cancel
Save