From f4bbe00322f4e983e73121d305e3855b9398b13f Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 23 Jul 2016 16:59:47 +0200 Subject: [PATCH] Download JQuery over HTTPS Otherwise anyone can MITM the connection and add rogue code there. --- bin/installDeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/installDeps.sh b/bin/installDeps.sh index ea6be38f2..48a34905d 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -95,7 +95,7 @@ if [ -f "src/static/js/jquery.js" ]; then fi if [ $DOWNLOAD_JQUERY = "true" ]; then - curl -lo src/static/js/jquery.js http://code.jquery.com/jquery-$NEEDED_VERSION.js || exit 1 + curl -lo src/static/js/jquery.js https://code.jquery.com/jquery-$NEEDED_VERSION.js || exit 1 fi #Remove all minified data to force node creating it new