mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
Working version of recursive-builder
This commit is contained in:
parent
6620d139cd
commit
dd79b484c9
1 changed files with 2 additions and 1 deletions
|
@ -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..."
|
||||
|
|
Loading…
Reference in a new issue