fixed reference to oauth3 git repo

This commit is contained in:
tigerbot 2017-06-12 12:45:55 -06:00
parent 651e53daf1
commit cb3f43c7ca
1 changed files with 6 additions and 1 deletions

View File

@ -1,9 +1,14 @@
#!/bin/bash
set -e
set -u
pushd packages/assets
git clone https://git.daplie.com/Daplie/oauth3.js.git org.oauth3
OAUTH3_GIT_URL="https://git.daplie.com/Oauth3/oauth3.js.git"
git clone ${OAUTH3_GIT_URL} org.oauth3 || true
pushd org.oauth3
git remote set-url origin ${OAUTH3_GIT_URL}
git checkout master
git pull
popd