From 315ce2397efab99a8a15cd2bb73367b00f178418 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 11:08:30 -0500 Subject: Use if [[ ... ]] instead of [ ... ] and change retval check in setupdisk when checking exit code when creating partition. --- preparechroot.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'preparechroot.sh') diff --git a/preparechroot.sh b/preparechroot.sh index 32f6558..82cd147 100644 --- a/preparechroot.sh +++ b/preparechroot.sh @@ -4,17 +4,17 @@ source colors.sh export LFS="$1" -if [ -f chrootprepared ]; then +if [[ -f chrootprepared ]]; then printf "%b" " ${IRED}CHROOT ${IGRN}already prepared...\n${RST}" exit 0 fi -if [ -z "${LFS}" ]; then +if [[ -z "${LFS}" ]]; then printf "%b" "${RED}Require first argument as path to LFS build!${RST}\n" exit 1 fi -if [ "${USER}" == "root" ]; then +if [[ "${USER}" == "root" ]]; then printf "%b" "${GRN}Changing ownership to root...${RST}\n" chown -R root:root "${LFS}"/bin chown -R root:root "${LFS}"/etc -- cgit v1.2.3-54-g00ecf