Skip to content

Commit

Permalink
Merge pull request #131 from lovesegfault/curl-quiet
Browse files Browse the repository at this point in the history
refactor(lib/install-nix): quiet down curl spam
  • Loading branch information
domenkozar committed Mar 30, 2022
2 parents 83e7d63 + 1544c90 commit 106f85d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/install-nix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ echo "installer options: ${installer_options[*]}"

# There is --retry-on-errors, but only newer curl versions support that
curl_retries=5
while ! curl -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://nixos.org/nix/install}"
while ! curl -sS -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://nixos.org/nix/install}"
do
sleep 1
((curl_retries--))
Expand Down

0 comments on commit 106f85d

Please sign in to comment.