1
0
Fork 0
mirror of https://github.com/cachix/install-nix-action.git synced 2025-06-08 00:27:00 +09:00

Merge pull request #226 from Mic92/nix-update

This commit is contained in:
sander 2025-02-20 00:36:56 +04:00 committed by GitHub
commit 91a0719595
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -93,7 +93,7 @@ echo "installer options: ${installer_options[*]}"
# There is --retry-on-errors, but only newer curl versions support that
curl_retries=5
while ! curl -sS -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://releases.nixos.org/nix/nix-2.25.2/install}"
while ! curl -sS -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://releases.nixos.org/nix/nix-2.26.2/install}"
do
sleep 1
((curl_retries--))