From 40cd11b2e65b3f63fc1dafa62f059abf4e786569 Mon Sep 17 00:00:00 2001 From: f Date: Wed, 25 Aug 2021 18:03:13 -0300 Subject: [PATCH] Mover chequeos al principio --- haini.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/haini.sh b/haini.sh index ccffe01..bf2a69c 100755 --- a/haini.sh +++ b/haini.sh @@ -2,6 +2,9 @@ # Fallar ante cualquier error set -e +# Por ahora sólo soportamos x86_64 +uname -m | grep -q x86_64 || exit 1 + DIR="$(dirname "$(realpath "$0")")" # Sólo se puede correr desde el directorio de Sutty @@ -10,8 +13,6 @@ if test "$(dirname "$DIR")" != "$(dirname "$PWD")"; then exit 1 fi -# Por ahora sólo soportamos x86_64 -uname -m | grep -q x86_64 || exit 1 # Podemos cambiar el entorno ENTORNO=${ENTORNO:-../hain}