18 lines
202 B
Bash
Executable File
18 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# script/update:
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Stopping and removing pod kontor"
|
|
if podman pod exists kontor; then
|
|
podman pod stop kontor
|
|
fi
|
|
|
|
script/cibuild
|
|
|
|
script/setup
|
|
|