From 30467f8bc3f55f366b3c4ad957ccb5a4f09df5e9 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 23 Jun 2024 20:04:17 +0200 Subject: [PATCH] helpers2.1: fix bad syntax in ynh_app_upstream_version --- helpers/helpers.v2.1.d/utils | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/helpers.v2.1.d/utils b/helpers/helpers.v2.1.d/utils index e6ad72eb1..c46c41d7c 100644 --- a/helpers/helpers.v2.1.d/utils +++ b/helpers/helpers.v2.1.d/utils @@ -460,7 +460,7 @@ ynh_read_manifest() { # # Requires YunoHost version 3.5.0 or higher. ynh_app_upstream_version() { - echo "${$YNH_APP_MANIFEST_VERSION/~ynh*/}" + echo "${YNH_APP_MANIFEST_VERSION/~ynh*/}" } # Return 0 if the "upstream" part of the version changed, or 1 otherwise (ie only the ~ynh suffix changed)