From b67d4621fc82724a0af2e64db320b9a031b8c121 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 3 Jun 2024 13:38:43 +0200 Subject: [PATCH] apps: fix YNH_HELPERS_VERSION again because packaging_format is actually a float hence 1.0/2.0 instead of 1 or 2 x_x --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index f34a42adb..25dce4104 100644 --- a/src/app.py +++ b/src/app.py @@ -2971,7 +2971,7 @@ def _make_environment_for_app_script( "YNH_HELPERS_VERSION": str( manifest.get("integration", {}).get("helpers_version") or manifest["packaging_format"] - ), + ).replace(".0", ""), "YNH_ARCH": system_arch(), "YNH_DEBIAN_VERSION": debian_version(), }