From d0588730f2972e36edbe142fe7788a1dc68c00a0 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 14 Jul 2020 20:53:14 +0100 Subject: [PATCH] Correct GPG bootstrap --- posh/bootstrap.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posh/bootstrap.ps1 b/posh/bootstrap.ps1 index 0ba8fd6..63310ea 100644 --- a/posh/bootstrap.ps1 +++ b/posh/bootstrap.ps1 @@ -7,4 +7,4 @@ Install-Module -Name PSDotFiles -Scope CurrentUser # Fix git, SSH and GPG to external executables [Environment]::SetEnvironmentVariable('GIT_SSH', "$ENV:SystemRoot\System32\OpenSSH\ssh.exe", 'User') [Environment]::SetEnvironmentVariable('GNUPGHOME', "$ENV:APPDATA\gnupg", 'User') -Invoke-Expression "git config --global gpg.program '/c/Program Files (x86)/GnuPG/bin/gpg.exe'" \ No newline at end of file +Invoke-Expression "git config --global gpg.program 'c:/Program Files (x86)/GnuPG/bin/gpg.exe'" \ No newline at end of file