Skip to content

Commit 106f85d

Browse files
authored
Merge pull request #131 from lovesegfault/curl-quiet
refactor(lib/install-nix): quiet down curl spam
2 parents 83e7d63 + 1544c90 commit 106f85d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/install-nix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ echo "installer options: ${installer_options[*]}"
5757

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

0 commit comments

Comments
 (0)