improve build-all script

This commit is contained in:
Daniel Langbein 2021-04-26 18:50:23 +02:00
parent d4eaac391d
commit 6b40fdb304

View File

@ -1,7 +1,11 @@
#!/bin/bash #!/bin/bash
# build all packages
for PKG in pkg/*; do for PKG in pkg/*; do
cd "${PKG}" || exit cd "${PKG}" || exit
aur build -c || exit aur build -c || exit
cd ../.. || exit cd ../.. || exit
done done
# push remote repository
arch-repo-push-new || exit