fix podman-compose + python (3/x)

This commit is contained in:
Gitouche 2024-06-11 21:59:32 +02:00
parent be8aadfbdf
commit e0041d998c
1 changed files with 10 additions and 12 deletions

View File

@ -351,16 +351,14 @@ oci_push_to_registry () {
fi
}
my_podman_compose () {
podman_compose_path=$(which podman-compose)
if [[ ! -z ${podman_compose_path} ]]; then
for py in python3.9 python3.6; do
${py} ${podman_compose_path} --version 2>/dev/null 1>&2
if [[ $? -eq 0 ]]; then
"${py} ${podman_compose_path} ${@}"
break
fi
done
fi
podman_compose_path=$(which podman-compose)
if [[ ! -z ${podman_compose_path} ]]; then
for py in python3.9 python3.6; do
${py} ${podman_compose_path} --version 2>/dev/null 1>&2
if [[ $? -eq 0 ]]; then
my_podman_compose="${py} ${podman_compose_path}"
break
fi
done
fi
}