Merge pull request #136929 from BenTheElder/1.35-clean-fix

1.35: add dockerized go cache chmod to `make clean`
This commit is contained in:
Kubernetes Prow Robot
2026-03-03 17:37:21 +05:30
committed by GitHub

View File

@@ -348,6 +348,9 @@ function kube::build::clean() {
if [[ -d "${LOCAL_OUTPUT_ROOT}/local/go/cache" ]]; then
chmod -R +w "${LOCAL_OUTPUT_ROOT}/local/go/cache"
fi
if [[ -d "${LOCAL_OUTPUT_ROOT}/dockerized/go/cache" ]]; then
chmod -R +w "${LOCAL_OUTPUT_ROOT}/dockerized/go/cache"
fi
rm -rf "${LOCAL_OUTPUT_ROOT}"
fi
}