Skip to content

Commit

Permalink
Pass --insecure to curl so that https works
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Jul 9, 2012
1 parent 2dd3117 commit eae8024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corepkgs/fetchurl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let
builder = builtins.toFile "fetchurl.sh"
''
echo "downloading $url into $out"
${curl} --fail --location --max-redirs 20 "$url" > "$out"
${curl} --fail --location --max-redirs 20 --insecure "$url" > "$out"
'';

in
Expand Down

0 comments on commit eae8024

Please sign in to comment.