Skip to content

Commit

Permalink
Merge pull request #409 from duckinator/bsd-compat
Browse files Browse the repository at this point in the history
Make curl ignore certs
  • Loading branch information
Nick Markwell committed May 18, 2012
2 parents a9ba4f7 + 196dcd3 commit 20e31e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/downloader.sh
@@ -1,3 +1,3 @@
#!/usr/bin/env sh

curl -L $1 || ftp -o - $1 || wget --no-check-certificate -O - $1 || wget -O - $1
curl -k -L $1 || ftp -o - $1 || wget --no-check-certificate -O - $1 || wget -O - $1

0 comments on commit 20e31e9

Please sign in to comment.