Working version of recursive-builder

This commit is contained in:
Mike Staszel 2010-05-20 16:45:07 -05:00
parent 6620d139cd
commit dd79b484c9

View file

@ -45,9 +45,10 @@ cd $WORKDIR/$1
# In the workdir, go to the repository, find the names of folders,
# go into each folder, run makepkg, and go to the next folder...
for i in `find . -type d -maxdepth 1 -mindepth 1`; do
for i in `find . -maxdepth 1 -mindepth 1 -type d`; do
cd $i > /dev/null 2>&1
$MAKEPKGCMD
cd ../$i > /dev/null 2>&1
done
echo "Deleting PKGBUILDs from the working directory..."