continuing work on hyprland build

This commit is contained in:
Matthew Stobbs
2025-02-28 21:08:35 -07:00
parent ac87ba3f4c
commit 2a86ffb94b
22 changed files with 79 additions and 145 deletions

View File

@@ -1,12 +1,16 @@
#!/usr/bin/env zsh
set -x
[[ -f ./lib.sh ]] && source ./lib.sh || exit 1
ssh-keygen -R "[127.0.0.1]:2222"
for os in ${OSBUILDS[@]}
do
if podman container exists ${IMAGE}:${os}
if podman container exists ${CONTAINER}_${os}
then
podman stop ${IMAGE}:${os}
podman stop ${CONTAINER}_${os}
fi
done