mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
9 lines
148 B
Bash
Executable File
9 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
podman=`command -v podman`
|
|
|
|
if [ -z "$podman" ]; then
|
|
echo "podman needs to be in PATH for this script to work."
|
|
exit 1
|
|
fi
|