Remove references to "GO111MODULE"

This commit is contained in:
Tim Hockin
2024-01-05 22:46:14 -08:00
parent 2a1147a434
commit e84adf611f
13 changed files with 9 additions and 25 deletions

View File

@@ -597,7 +597,7 @@ kube::golang::setup_gomaxprocs() {
if ! command -v ncpu >/dev/null 2>&1; then
# shellcheck disable=SC2164
pushd "${KUBE_ROOT}/hack/tools" >/dev/null
GO111MODULE=on go install ./ncpu || echo "Will not automatically set GOMAXPROCS"
go install ./ncpu || echo "Will not automatically set GOMAXPROCS"
# shellcheck disable=SC2164
popd >/dev/null
fi