2017-05-22 23:25:43 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2017-05-30 11:39:46 -06:00
|
|
|
set -e
|
|
|
|
|
set -u
|
2017-08-15 20:26:10 +00:00
|
|
|
# git clone git@git.daplie.com:OAuth3/org.oauth3.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-15 20:26:10 +00:00
|
|
|
if ! [ -d ./assets/oauth3.org ]; then
|
|
|
|
|
git clone git@git.daplie.com:OAuth3/oauth3.js.git ./assets/oauth3.org
|
2017-05-22 23:25:43 +00:00
|
|
|
fi
|
2017-08-15 20:26:10 +00:00
|
|
|
pushd ./assets/oauth3.org
|
2017-05-22 23:25:43 +00:00
|
|
|
git checkout v1
|
|
|
|
|
git pull
|
|
|
|
|
popd
|
2017-05-23 19:10:37 +00:00
|
|
|
|
2017-05-22 23:25:43 +00:00
|
|
|
bower install rsvp
|