From cebc1fc483c3705f9dad3c51dc6fb1eebb27fa6b Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Mon, 1 Aug 2022 15:02:21 -0400 Subject: [PATCH] fix --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 97fb1c8..7ee6b9e 100755 --- a/scripts/install +++ b/scripts/install @@ -39,7 +39,7 @@ app=$YNH_APP_INSTANCE_NAME ynh_script_progression --message="Validating installation parameters..." --weight=1 # Check machine architecture (in particular, we don't support 32bit machines) -if [ $architecture == "i386" ] || [ $YNH_ARCH == "armel" ] +if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armel" ] then ynh_die --message="Sorry, because of NodeJS framework, this app can't be installed on i386 (32 bits) or armel machine." fi