diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 11:08:30 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 11:08:30 -0500 |
commit | 315ce2397efab99a8a15cd2bb73367b00f178418 (patch) | |
tree | d9798c354440ce542c2a9c5e1b93024ee56df99e /preparechroot.sh | |
parent | e8c0f5a1a0d7ccee510fa59e577cccd46d68e3f8 (diff) |
Use if [[ ... ]] instead of [ ... ] and change retval check in setupdisk when checking exit code when creating partition.
Diffstat (limited to 'preparechroot.sh')
-rw-r--r-- | preparechroot.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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 |