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