From ca58231e8488e09a2cb298f9c85e2f0387f238e6 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 18 Nov 2019 13:24:33 +0100 Subject: [PATCH] Fix arch check ... it's the 32bit that ain't supported ... --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 5c5a250..27396f3 100755 --- a/scripts/install +++ b/scripts/install @@ -37,7 +37,7 @@ ynh_print_info --message="Validating installation parameters..." architecture=$(ynh_detect_arch) # Check machine architecture (in particular, we don't support ARM and 32bit machines) -if [ $architecture == "x86_64" ] || [ $architecture == "arm" ] +if [ $architecture == "i386" ] || [ $architecture == "arm" ] then ynh_die --message="Sorry, but this app can only be installed on a x86, 64 bits machine :(" fi