shell check
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nyyu 2021-05-19 10:30:23 +02:00
parent 03f120dc07
commit b80073a4c1

View file

@ -1,19 +1,18 @@
#!/bin/bash
pacman -Syu --noconfirm
useradd build -m
echo 'build ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
chown -R build:build *
chown -R build:build .
for d in */ ; do
echo "$d"
cd "$d"
sudo -u build sh -c 'makepkg -s --skippgpcheck --noconfirm'
if [ $? -eq 0 ]; then
cd "$d" || continue
if sudo -u build sh -c 'makepkg -s --skippgpcheck --noconfirm' ; then
for pkg in *.pkg.tar.zst ; do
cp $pkg /repo/
repo-add /repo/nyyu.db.tar.zst /repo/$pkg
cp "$pkg" /repo/
repo-add /repo/nyyu.db.tar.zst /repo/"$pkg"
done
fi
cd ..