From c86f6c8c40671fd35cd5f18352d42bc828720fb5 Mon Sep 17 00:00:00 2001 From: Michael Altfield Date: Thu, 7 Mar 2024 20:31:52 -0500 Subject: [PATCH] whoops, forgot to update the actual curl command from previous commit --- build/windows/buildExe.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/windows/buildExe.ps1 b/build/windows/buildExe.ps1 index ecd779dc..c2ff24d8 100644 --- a/build/windows/buildExe.ps1 +++ b/build/windows/buildExe.ps1 @@ -149,7 +149,7 @@ $signature_url = "https://github.com/vsajip/python-gnupg/releases/download/0.5.2 # download the latest version of the python-gnupg module $filename = "$(Split-Path -Leaf "${file_url}")" $filename = "${filename}.trim()" # https://stackoverflow.com/a/59218860/1174102 -curl -OutFile $(Split-Path -Leaf "${file_url}") "${file_url}" | Out-String +curl -OutFile "${filename}" "${file_url}" | Out-String echo $filename | Out-String # get the URL to download the detached signature file