From e5a12db2708e7d728a8c78cec0773b55a68595e5 Mon Sep 17 00:00:00 2001 From: richdex14 Date: Mon, 4 Sep 2017 12:42:22 -0600 Subject: [PATCH] Update update-packages.sh to use `curl` for better `https` portability --- update-packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update-packages.sh b/update-packages.sh index 0365131..a62e069 100755 --- a/update-packages.sh +++ b/update-packages.sh @@ -15,12 +15,12 @@ popd mkdir -p com.jquery pushd com.jquery -wget 'https://code.jquery.com/jquery-3.1.1.js' -O jquery-3.1.1.js +curl -o jquery-3.1.1.js 'https://code.jquery.com/jquery-3.1.1.js' popd mkdir -p com.google pushd com.google -wget 'https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.min.js' -O angular.1.6.2.min.js +curl -o angular.1.6.2.min.js 'https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.min.js' popd mkdir -p well-known