From 88468821d043d7035e45f3c5308b1f94d2e861c3 Mon Sep 17 00:00:00 2001 From: anmol Date: Wed, 14 Oct 2020 08:34:30 +0530 Subject: [PATCH] Fix string error --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 0d4e8942..0f4aadc9 100755 --- a/scripts/install +++ b/scripts/install @@ -31,7 +31,7 @@ email=$(sudo yunohost user info $admin | grep "mail:" | cut -d' ' -f2) upload="256M" random_string="$(ynh_string_random)$(ynh_string_random)$(ynh_string_random)" database=$YNH_APP_ARG_DATABASE - +database=expr $database ### If it's a multi-instance app, meaning it can be installed several times independently ### The id of the app as stated in the manifest is available as $YNH_APP_ID ### The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)