fixed reference to oauth3 git repo
This commit is contained in:
parent
651e53daf1
commit
cb3f43c7ca
|
@ -1,9 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
pushd packages/assets
|
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
|
pushd org.oauth3
|
||||||
|
git remote set-url origin ${OAUTH3_GIT_URL}
|
||||||
git checkout master
|
git checkout master
|
||||||
git pull
|
git pull
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Reference in New Issue