10 lines
273 B
Bash
10 lines
273 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
cd ~/sozsoft-platform
|
||
|
|
git restore ui/public/version.json 2>/dev/null || git checkout -- ui/public/version.json
|
||
|
|
|
||
|
|
./configs/deployment/scripts/build/api.sh
|
||
|
|
./configs/deployment/scripts/build/migrator.sh
|
||
|
|
./configs/deployment/scripts/build/ui.sh production
|