From 219cba5fc7f33814f0ba41b019628c085275614a Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Mon, 25 Oct 2021 21:01:19 +0200 Subject: [PATCH] Fix arm-ness --- scripts/bootstrap/bootstrap-haskell | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap/bootstrap-haskell b/scripts/bootstrap/bootstrap-haskell index cbf275f..02174a1 100755 --- a/scripts/bootstrap/bootstrap-haskell +++ b/scripts/bootstrap/bootstrap-haskell @@ -201,10 +201,10 @@ download_ghcup() { i*86) _url=${base_url}/${ghver}/i386-linux-ghcup-${ghver} ;; - armv7*) + armv7*|*armv8l*) _url=${base_url}/${ghver}/armv7-linux-ghcup-${ghver} ;; - aarch64|arm64|armv8l) + aarch64|arm64) # we could be in a 32bit docker container, in which # case uname doesn't give us what we want if [ "$(getconf LONG_BIT)" = "32" ] ; then