diff options
Diffstat (limited to 'insidechroot.sh')
-rw-r--r-- | insidechroot.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/insidechroot.sh b/insidechroot.sh index 6e01ccf..1bb0732 100644 --- a/insidechroot.sh +++ b/insidechroot.sh @@ -7,9 +7,9 @@ source /sources/functions.sh printf "%b" "${CYN}SUCCESSFULLY ENTERED ${RED}CHROOT${RST}!\n" -if [ "${CHAPTER}" -eq 7 ]; then +if [[ "${CHAPTER}" -eq 7 ]]; then printf "%b" "${GRN}Creating directories...${RST}\n" - if [ -f /sources/createdirs ]; then + if [[ -f /sources/createdirs ]]; then printf "%b" "${IGRN} Directories already created.${RST}\n" else mkdir -p /boot @@ -88,7 +88,7 @@ if [ "${CHAPTER}" -eq 7 ]; then fi printf "%b" "${GRN}Creating essential files and symbolic links... ${RST}\n" - if [ -f "/sources/essential" ]; then + if [[ -f "/sources/essential" ]]; then printf "%b" " ${IGRN}Essential files and symbolic links already created.${RST}\n" else ln -sf /proc/self/mounts /etc/mtab |