diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-19 11:58:10 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-19 11:58:10 +0100 |
commit | e2b849426238cd08762169b12cbb212513e02d84 (patch) | |
tree | fe34b417a14e6834590ab44ad59caf76c1e9148a | |
parent | Forgot echo (diff) | |
download | arch-installer-e2b849426238cd08762169b12cbb212513e02d84.tar.gz arch-installer-e2b849426238cd08762169b12cbb212513e02d84.tar.bz2 arch-installer-e2b849426238cd08762169b12cbb212513e02d84.tar.xz arch-installer-e2b849426238cd08762169b12cbb212513e02d84.tar.zst arch-installer-e2b849426238cd08762169b12cbb212513e02d84.zip |
shellchecked
-rwxr-xr-x | joes-arch-install-UEFI.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/joes-arch-install-UEFI.sh b/joes-arch-install-UEFI.sh index be4b388..8445a9d 100755 --- a/joes-arch-install-UEFI.sh +++ b/joes-arch-install-UEFI.sh @@ -218,12 +218,12 @@ __G" # DRIVE TO USE: ${BCYAN}$drv ${BMAGENTA}# # # # /boot/efi > BOOT partition size: ${BYELLOW}$btsze ${BMAGENTA}#" -if [ $swps -ge 10 ]; then +if [ "$swps" -ge 10 ]; then echo -e "# SWAP partition size: ${BYELLOW}$swpsze ${BMAGENTA}#" else echo -e "# SWAP partition size: ${BYELLOW}$swpsze ${BMAGENTA}#" fi -if [ $rts -ge 100 ]; then +if [ "$rts" -ge 100 ]; then echo -e "# / > ROOT partition size: ${BYELLOW}$rtsze ${BMAGENTA}#" else echo -e "# / > ROOT partition size: ${BYELLOW}$rtsze ${BMAGENTA}#" |