From d912f0576405cc0bc6bacbd1997cba050f1b07c4 Mon Sep 17 00:00:00 2001 From: sawft99 <81699231+sawft99@users.noreply.github.com> Date: Fri, 5 May 2023 17:52:36 -0400 Subject: [PATCH] GPG URL update - This way it will always download the latest - Also changed to https instead of http --- Security/GnuPg.psm1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Security/GnuPg.psm1 b/Security/GnuPg.psm1 index d3bc76b..2306617 100644 --- a/Security/GnuPg.psm1 +++ b/Security/GnuPg.psm1 @@ -32,7 +32,7 @@ [Parameter()] [ValidateNotNullOrEmpty()] - [string]$DownloadUrl = 'http://files.gpg4win.org/gpg4win-2.2.5.exe' + [string]$DownloadUrl = 'https://files.gpg4win.org/gpg4win-latest.exe' ) process { @@ -170,4 +170,4 @@ function Remove-Encryption { Write-Error $_.Exception.Message } } -} \ No newline at end of file +}