2017-05-22 23:25:43 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-05-30 17:39:46 +00:00
|
|
|
set -e
|
|
|
|
set -u
|
2017-11-10 19:21:40 +00:00
|
|
|
# git clone https://git.oauth3.org/OAuth3/issuer.html.git /srv/walnut/packages/pages/issuer@oauth3.org
|
|
|
|
# git clone https://git.oauth3.org/OAuth3/azp.html.git /srv/walnut/packages/pages/azp@oauth3.org
|
2017-05-23 19:10:37 +00:00
|
|
|
|
2017-05-22 23:25:43 +00:00
|
|
|
mkdir -p assets
|
2017-08-09 18:22:41 +00:00
|
|
|
if ! [ -d ./assets/oauth3.org ]; then
|
2017-11-10 19:21:40 +00:00
|
|
|
git clone https://git.oauth3.org/OAuth3/oauth3.js.git ./assets/oauth3.org
|
2017-05-22 23:25:43 +00:00
|
|
|
fi
|
2017-08-09 18:22:41 +00:00
|
|
|
pushd ./assets/oauth3.org
|
2017-10-23 23:13:05 +00:00
|
|
|
git checkout v1.2
|
2017-05-22 23:25:43 +00:00
|
|
|
git pull
|
|
|
|
popd
|
2017-05-23 19:10:37 +00:00
|
|
|
|
2017-05-22 23:25:43 +00:00
|
|
|
bower install rsvp
|