aboutsummaryrefslogtreecommitdiffstats
path: root/preparechroot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'preparechroot.sh')
-rw-r--r--preparechroot.sh6
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