Files
build-containers/setup.sh
2023-05-24 16:20:18 +02:00

11 lines
151 B
Bash
Executable File

#!/bin/bash
set -e
podman=`which podman || true`
if [ -z "$podman" ]; then
echo "podman needs to be in PATH for this script to work."
exit 1
fi