Mover chequeos al principio
This commit is contained in:
parent
2bf1868e0f
commit
40cd11b2e6
1 changed files with 3 additions and 2 deletions
5
haini.sh
5
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}
|
||||
|
|
Loading…
Reference in a new issue