33 lines
556 B
Bash
33 lines
556 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
set -u
|
||
|
# DEBUG
|
||
|
set -x
|
||
|
|
||
|
main() {
|
||
|
cd "$(dirname "${0}")"
|
||
|
|
||
|
# includes functions:
|
||
|
# common_start
|
||
|
# common_end
|
||
|
. ./build__common.sh
|
||
|
|
||
|
target='instance-autotest'
|
||
|
|
||
|
idhub1="idhub__${target}"
|
||
|
|
||
|
common_start
|
||
|
|
||
|
# detect if is new
|
||
|
if [ ! -f "./${idhub1}" ]; then
|
||
|
echo 'Detected new deployment, recreating idhub git repo'
|
||
|
cp -rp IdHub "${idhub1}"
|
||
|
rm -f "${idhub1}/db.sqlite3"
|
||
|
fi
|
||
|
|
||
|
common_end
|
||
|
}
|
||
|
|
||
|
main "${@}"
|