From 41d4fda1f879257825bd0ac4158e1661a508b004 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sat, 16 Mar 2019 04:09:58 +0100 Subject: [PATCH] Fix architecture detection --- scripts/detect_arch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/detect_arch b/scripts/detect_arch index 72440b7..d82d3ca 100644 --- a/scripts/detect_arch +++ b/scripts/detect_arch @@ -1,6 +1,6 @@ #!/bin/bash -if [ -n "$(uname -m | grep 64)" ]; then +if [ -n "$(uname -m | grep x86_64)" ]; then architecture="x86-64" elif [ -n "$(uname -m | grep 86)" ]; then architecture="i386"