Skip to content

Commit 1544c90

Browse files
committed
refactor(lib/install-nix): quiet down curl spam
1 parent c530012 commit 1544c90

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)