fix: remove retry-all-errors option [skip ci]
This commit is contained in:
parent
4ccfb857a4
commit
fc77078868
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@ set -ex
|
||||||
|
|
||||||
GH_ARCH="amd64"
|
GH_ARCH="amd64"
|
||||||
|
|
||||||
VERSION=`curl --retry 12 --retry-delay 30 --retry-all-errors "https://api.github.com/repos/cli/cli/releases/latest" | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c2-`
|
VERSION=`curl --retry 12 --retry-delay 30 "https://api.github.com/repos/cli/cli/releases/latest" | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c2-`
|
||||||
|
|
||||||
curl --retry 12 --retry-delay 120 --retry-all-errors -sSL "https://github.com/cli/cli/releases/download/v${VERSION}/gh_${VERSION}_linux_${GH_ARCH}.tar.gz" -o "gh_${VERSION}_linux_${GH_ARCH}.tar.gz"
|
curl --retry 12 --retry-delay 120 -sSL "https://github.com/cli/cli/releases/download/v${VERSION}/gh_${VERSION}_linux_${GH_ARCH}.tar.gz" -o "gh_${VERSION}_linux_${GH_ARCH}.tar.gz"
|
||||||
|
|
||||||
tar xf "gh_${VERSION}_linux_${GH_ARCH}.tar.gz"
|
tar xf "gh_${VERSION}_linux_${GH_ARCH}.tar.gz"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue