diff options
author | Rudy Bousset <bousset.rudy@gmail.com> | 2019-08-31 13:35:21 +0200 |
---|---|---|
committer | Rudy Bousset <bousset.rudy@gmail.com> | 2019-08-31 13:35:21 +0200 |
commit | e108e9a6df8d2a0651dcdd982fab3ec3146e519f (patch) | |
tree | 7d0289a79c5b7caa82ca55f7a31001539089b7d6 /arch_install-UEFI.sh | |
parent | First commit (diff) | |
download | arch-installer-e108e9a6df8d2a0651dcdd982fab3ec3146e519f.tar.gz arch-installer-e108e9a6df8d2a0651dcdd982fab3ec3146e519f.tar.bz2 arch-installer-e108e9a6df8d2a0651dcdd982fab3ec3146e519f.tar.xz arch-installer-e108e9a6df8d2a0651dcdd982fab3ec3146e519f.tar.zst arch-installer-e108e9a6df8d2a0651dcdd982fab3ec3146e519f.zip |
Work in progress
Diffstat (limited to '')
-rwxr-xr-x | arch_install-UEFI.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch_install-UEFI.sh b/arch_install-UEFI.sh index 49af49b..dd34402 100755 --- a/arch_install-UEFI.sh +++ b/arch_install-UEFI.sh @@ -38,6 +38,8 @@ echo "#========================================================================= echo "Is that correct?" echo "~> [y/n]" read answr -if [ $answr -eq "y" ] then - echo "aborting" +if [[ $answr != y && $answr != Y && $answr != yes && $answr != Yes ]]; then + echo "Aborting" + exit fi +echo "tasseur" |