diff --git a/main.sh b/main.sh index b91a371..2d57fb5 100755 --- a/main.sh +++ b/main.sh @@ -24,13 +24,11 @@ fi export run="config" for i in $(find "${step}1" -mindepth 1 -maxdepth 1 -type f | sort -n ); do - echo $i test -f "${i}" && source "${i}" done export run="postconfig" for i in $(find "${step}2" -mindepth 1 -maxdepth 1 -type f | sort -n ); do - echo $i test -f "${i}" && source "${i}" done diff --git a/run_in_chroot.sh b/run_in_chroot.sh index 85966e9..b0c1a4e 100755 --- a/run_in_chroot.sh +++ b/run_in_chroot.sh @@ -28,12 +28,10 @@ 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}" done export run="post" for i in $(find "${step}4" -mindepth 1 -maxdepth 1 -type f | sort -n); do - echo $i test -f "${i}" && source "${i}" done