Update update-packages.sh to use `curl` for better `https` portability

This commit is contained in:
richdex14 2017-09-04 12:42:22 -06:00
parent e02ecc86d9
commit e5a12db270
1 changed files with 2 additions and 2 deletions

View File

@ -15,12 +15,12 @@ popd
mkdir -p com.jquery mkdir -p com.jquery
pushd 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 popd
mkdir -p com.google mkdir -p com.google
pushd 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 popd
mkdir -p well-known mkdir -p well-known