From e17d0e93b44f27b63d0692a64511bea39c1a9dc8 Mon Sep 17 00:00:00 2001 From: teldra Date: Sun, 9 May 2021 22:10:27 +0200 Subject: [PATCH] fixes --- run_in_chroot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_in_chroot.sh b/run_in_chroot.sh index ce59183..85966e9 100755 --- a/run_in_chroot.sh +++ b/run_in_chroot.sh @@ -29,11 +29,11 @@ done export run="install" for i in $(find "${step}3" -mindepth 1 -maxdepth 1 -type f | sort -n ); do echo $i - test -f "${i}" && source "${i}" + test -f "${i}" && source "${i}" done export run="post" -for i in $(find "${step}3" -mindepth 1 -maxdepth 1 -type f | sort -n); do +for i in $(find "${step}4" -mindepth 1 -maxdepth 1 -type f | sort -n); do echo $i test -f "${i}" && source "${i}" done