fix(just): skip meta packages without PKGBUILD in aur-publish-all

This commit is contained in:
2026-04-06 02:11:32 +02:00
parent 33b4f410e5
commit a16c3a0523

View File

@@ -252,6 +252,7 @@ aur-publish-all:
for dir in aur/*/; do
pkg=$(basename "$dir")
[ -d "$dir/.git" ] || continue
[ -f "$dir/PKGBUILD" ] || continue
echo "=== $pkg ==="
just aur-publish-pkg "$pkg"
echo ""