Update update-packages.sh to use `curl` for better `https` portability
This commit is contained in:
parent
e02ecc86d9
commit
e5a12db270
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue