10 lines
142 B
Bash
10 lines
142 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Move to repository root
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
git pull
|
||
|
|
./VContainers/build.sh
|
||
|
|
systemctl --user restart vulture-stack
|