diff options
Diffstat (limited to 'src/chroot-tools/librechroot')
-rwxr-xr-x | src/chroot-tools/librechroot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/chroot-tools/librechroot b/src/chroot-tools/librechroot index 4edcb2f..1eba63c 100755 --- a/src/chroot-tools/librechroot +++ b/src/chroot-tools/librechroot @@ -30,7 +30,7 @@ set -euE # - the case statement in main() that checks the number of arguments # - the case statement in main() that runs them -. $(librelib conf) +. "$(librelib conf)" load_files chroot . libremessages @@ -38,9 +38,9 @@ load_files chroot shopt -s nullglob umask 0022 -readonly _arch_nspawn=$(librelib chroot/arch-nspawn) -readonly _mkarchroot=$(librelib chroot/mkarchroot) -readonly _makechrootpkg=$(librelib chroot/makechrootpkg.sh) +readonly _arch_nspawn="$(librelib chroot/arch-nspawn)" +readonly _mkarchroot="$(librelib chroot/mkarchroot)" +readonly _makechrootpkg="$(librelib chroot/makechrootpkg.sh)" # Because the makechrootpkg.sh library functions don't work with -euE _makechrootpkg() ( |