- only leave fedora enabled - test each package one at a time to ensure they install correctly
17 lines
262 B
Bash
Executable File
17 lines
262 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
[[ -f ./lib.sh ]] && source ./lib.sh || exit 1
|
|
|
|
for os in ${OSBUILDS[@]}
|
|
do
|
|
if podman container exists ${IMAGE}:${os}
|
|
then
|
|
podman stop ${IMAGE}:${os}
|
|
fi
|
|
done
|
|
|
|
if [ "$HOSTOS" = "Darwin" ]
|
|
then
|
|
podman machine stop ${MACHINENAME}
|
|
fi
|