This commit is contained in:
parent
d3950dda5e
commit
0650294b22
1 changed files with 5 additions and 4 deletions
9
build.sh
9
build.sh
|
@ -9,11 +9,12 @@ chown -R build:build *
|
|||
for d in */ ; do
|
||||
echo "$d"
|
||||
cd "$d"
|
||||
sudo -u build sh -c 'makepkg -s --skippgpcheck'
|
||||
sudo -u build sh -c 'makepkg -s --skippgpcheck --noconfirm'
|
||||
if [ $? -eq 0 ]; then
|
||||
PKG=$(*.pkg.tar.zst)
|
||||
cp $PKG /repo/
|
||||
repo-add /repo/nyyu.db.tar.zst $PKG
|
||||
for pkg in *.pkg.tar.zst ; do
|
||||
cp $pkg /repo/
|
||||
repo-add /repo/nyyu.db.tar.zst /repo/$pkg
|
||||
done
|
||||
fi
|
||||
cd ..
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue