Merge pull request #25646 from baude/noarchset

Do not set arch for windows to amd64
This commit is contained in:
openshift-merge-bot[bot]
2025-03-24 14:21:03 +00:00
committed by GitHub

View File

@ -9,7 +9,6 @@ $ErrorActionPreference = 'Stop'
# Any golang compilation needs to know what it's building for. # Any golang compilation needs to know what it's building for.
$Env:GOOS = "windows" $Env:GOOS = "windows"
$Env:GOARCH = "amd64"
# Unnecessary and intrusive. They claim parameter/variable # Unnecessary and intrusive. They claim parameter/variable
# values aren't collected, but there could be a bug leading # values aren't collected, but there could be a bug leading