mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
19 lines
202 B
Bash
Executable File
19 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
sh deploy/remove_service.sh
|
|
|
|
# avoid 'could not bind to socket' error
|
|
fuser -k 8080/tcp
|
|
|
|
git pull --rebase
|
|
|
|
cd backend
|
|
make clean
|
|
make RELEASE=1
|
|
cd ..
|
|
|
|
sh deploy/install_service.sh
|
|
|