build-containers/setup.sh

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