Install curl on Windows
diff --git a/buildkite/setup-windows-manual.ps1 b/buildkite/setup-windows-manual.ps1
index 21207a0..10a86dc 100755
--- a/buildkite/setup-windows-manual.ps1
+++ b/buildkite/setup-windows-manual.ps1
@@ -62,6 +62,10 @@
 Invoke-Expression ((New-Object Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"))
 & choco feature enable -n allowGlobalConfirmation
 
+## Install Curl
+Write-Host "Installing MSYS2..."
+& choco install curl
+
 ## Install MSYS2
 Write-Host "Installing MSYS2..."
 & choco install msys2 --params="'/NoPath /NoUpdate'"
diff --git a/buildkite/setup-windows.ps1 b/buildkite/setup-windows.ps1
index 42e6bff..25efb37 100755
--- a/buildkite/setup-windows.ps1
+++ b/buildkite/setup-windows.ps1
@@ -61,6 +61,10 @@
 Invoke-Expression ((New-Object Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"))
 & choco feature enable -n allowGlobalConfirmation
 
+## Install Curl
+Write-Host "Installing MSYS2..."
+& choco install curl
+
 ## Install MSYS2
 Write-Host "Installing MSYS2..."
 & choco install msys2 --params="'/NoPath /NoUpdate'"