aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/check.sh
blob: ea01193be84410951034c90866c67918b2b117a5 (plain) (blame)
1
2
3
4
5
6
7
cd aur
for hash in $(git rev-list --max-count=10 HEAD); do
  echo "Checking $hash..."
  git ls-tree --name-only -r $hash | grep -q '^PKGBUILD$' || echo "❌ Missing PKGBUILD in $hash"
done
makepkg --printsrcinfo > .SRCINFO
cd ..