From d67137363f809cc48e1f557609a3bda5e5440b24 Mon Sep 17 00:00:00 2001 From: Enno Tensing Date: Mon, 11 Aug 2025 17:39:09 +0200 Subject: [PATCH] containerctl: Fix python version check Signed-off-by: Enno Tensing --- containerctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containerctl b/containerctl index b5710ca..f34fc60 100755 --- a/containerctl +++ b/containerctl @@ -108,7 +108,7 @@ generate_container() mypython="python3" pyver="$(/usr/bin/env "${mypython}" -c 'import sys; print(sys.version_info.minor)')" - if [ "${pyver}" -gt "11" ] + if [ "${pyver}" -lt "11" ] then mypython="python3.11" fi