12 lines
298 B
Bash
12 lines
298 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -d "$DATA_DIR/core" ] ; then
|
||
|
git_update.sh -r dev -o "-i $DATA_DIR/radiodemo-deploy" -d "$DATA_DIR/core" git@gitlab.com:omaradio/core.git
|
||
|
fi
|
||
|
|
||
|
git_update.sh -r dev -d "$HTTP_DIR/manager" git@gitlab.com:omaradio/single-manager.git
|
||
|
cd "$HTTP_DIR/manager"
|
||
|
npm install
|
||
|
npm run build
|
||
|
|