diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 11:33:59 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 11:33:59 -0500 |
commit | 09a71c051060d3b934a19ae4d9c962f7ceb44c69 (patch) | |
tree | 12b46d0b4caf7a21d9a37dc8d0de6442c929fe33 /preparechroot.sh | |
parent | f063af2cf37ddb9e542e8b085f350f79802e87e8 (diff) | |
parent | e2547734fd91c35bf3eaac1d9486b0f3c2877192 (diff) |
Merge branch 'cleanup' into chapter7
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 |