From 57c6caf0d3a1aff069e045702e250d2bd17a1ffc Mon Sep 17 00:00:00 2001 From: david Date: Tue, 8 Dec 2020 18:58:20 +0000 Subject: [PATCH] Keep commands within the 'chroot-shell' directory Reduces clutter. --- do_chroot.sh | 2 +- do_umount.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/do_chroot.sh b/do_chroot.sh index dbc746e..8f79e95 100755 --- a/do_chroot.sh +++ b/do_chroot.sh @@ -2,7 +2,7 @@ set -Eeuo pipefail # Check and set environment, and mount file system. -. ./_do_self_checks.sh +. chroot-shell/_do_self_checks.sh cd $FILE_SYSTEM_DIR if [ ! -z "$CHROOT_MOUNT_SET" ]; then diff --git a/do_umount.sh b/do_umount.sh index 029c308..f657c54 100644 --- a/do_umount.sh +++ b/do_umount.sh @@ -3,7 +3,7 @@ # Check the environment and mount the file system if it is not mounted (to be # sure it makes sense to umount it, rather than be umounting something else). -. ./_do_self_checks.sh +. chroot-shell/_do_self_checks.sh ( # If the file system had been mounted before _do_self_checks.sh, above,