Move update script

This commit is contained in:
Valentin Brandl
2019-07-29 22:38:13 +02:00
parent eae6127c6a
commit 30970e9610

View File

@ -1,18 +0,0 @@
#!/usr/bin/env sh
set -e
update() {
git stash
git pull
git stash pop
}
build() {
docker-compose build
docker-compose down
docker-compose up -d
}
update
build