Merge pull request #136927 from BenTheElder/clean-fix

add dockerized go cache chmod to  `make clean`
This commit is contained in:
Kubernetes Prow Robot
2026-02-11 08:38:08 +05:30
committed by GitHub

View File

@@ -345,6 +345,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
}