1
0

fixed logical check in install script

Este cometimento está contido em:
tigerbot 2017-05-30 11:39:46 -06:00
ascendente fe81df00ee
cometimento c59c9a3cc7
2 ficheiros modificados com 6 adições e 2 eliminações

2
.gitignore externo
Ver ficheiro

@ -1 +1,3 @@
*.*sw*
bower_components/
assets/

4
install.sh Ficheiro normal → Ficheiro executável
Ver ficheiro

@ -1,9 +1,11 @@
#!/bin/bash
set -e
set -u
# git clone git@git.daplie.com:OAuth3/org.oauth3.git /srv/walnut/packages/pages/org.oauth3
mkdir -p assets
if [ -d ./assets/org.oauth3 ]; then
if ! [ -d ./assets/org.oauth3 ]; then
git clone git@git.daplie.com:Daplie/oauth3.js.git ./assets/org.oauth3
fi
pushd ./assets/org.oauth3