diff options
author | Jonathan Bauer | 2019-11-28 12:14:41 +0100 |
---|---|---|
committer | Jonathan Bauer | 2019-11-28 12:15:48 +0100 |
commit | ee4c8250878e97206636e8a914072428700e1efb (patch) | |
tree | 278f5a04d7c5d7eda79f083a72283f44dc154deb /core | |
parent | chroot.inc: formatting (diff) | |
download | mltk-ee4c8250878e97206636e8a914072428700e1efb.tar.gz mltk-ee4c8250878e97206636e8a914072428700e1efb.tar.xz mltk-ee4c8250878e97206636e8a914072428700e1efb.zip |
chroot.inc: fix broken ||
Diffstat (limited to 'core')
-rw-r--r-- | core/includes/chroot.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/includes/chroot.inc b/core/includes/chroot.inc index b286d1e1..87167fa2 100644 --- a/core/includes/chroot.inc +++ b/core/includes/chroot.inc @@ -75,7 +75,7 @@ chroot_prepare_dirs() { fi fi - mkdir -p "${CHROOT_TEMPDIR}" | perror "Could not create base directory for mount directories $CHROOT_TEMPDIR." + mkdir -p "${CHROOT_TEMPDIR}" || perror "Could not create base directory for mount directories $CHROOT_TEMPDIR." for DIR in "${CHROOT_BINDDIR}" "${CHROOT_MOUNTDIR}"; do mkdir -p "${DIR}" || perror "Could not create directory for mount directory $DIR." done |