diff --git a/bin/n b/bin/n index 2ea7397..50bed6f 100755 --- a/bin/n +++ b/bin/n @@ -35,8 +35,8 @@ fi GET= -# wget support -which wget > /dev/null && GET="wget -q -O-" +# wget support (Added --no-check-certificate for Github downloads) +which wget > /dev/null && GET="wget --no-check-certificate -q -O-" # curl support which curl > /dev/null && GET="curl -# -L"