aboutsummaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorChris Evich <1183438+cevich@users.noreply.github.com>2022-09-27 13:09:18 -0400
committerGitHub <noreply@github.com>2022-09-27 13:09:18 -0400
commitcbc7185d1fc30fdb24466ccaaa5680aa10f67dd1 (patch)
treee61eecaa1d9163cc3d7d0481588a8a8ee1e8c3c5 /hack
parent23a30661ad390e3a52fd99de241baa9e8d179e09 (diff)
parent0fb95f95d2af7bcc2529f896fec9904b3357b580 (diff)
downloadpodman-cbc7185d1fc30fdb24466ccaaa5680aa10f67dd1.tar.gz
podman-cbc7185d1fc30fdb24466ccaaa5680aa10f67dd1.tar.bz2
podman-cbc7185d1fc30fdb24466ccaaa5680aa10f67dd1.zip
Merge pull request #15896 from edsantiago/dont_install_tools
CI: only make install.tools when needed
Diffstat (limited to 'hack')
-rwxr-xr-xhack/install_golangci.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/install_golangci.sh b/hack/install_golangci.sh
index 896d59901..29d925666 100755
--- a/hack/install_golangci.sh
+++ b/hack/install_golangci.sh
@@ -6,7 +6,7 @@ die() { echo "${1:-No error message given} (from $(basename $0))"; exit 1; }
function install() {
echo "Installing golangci-lint v$VERSION into $BIN"
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v$VERSION
+ curl -sSL --retry 5 https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v$VERSION
}
# Undocumented behavior: golangci-lint installer requires $BINDIR in env,