This commit is contained in:
teldra 2021-05-09 22:10:27 +02:00
parent 3976d81df8
commit e17d0e93b4
1 changed files with 2 additions and 2 deletions

View File

@ -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