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}