add build all script

This commit is contained in:
Daniel Langbein 2021-04-26 18:47:13 +02:00
parent 9f36fc1d69
commit d4eaac391d

7
build-all.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
for PKG in pkg/*; do
cd "${PKG}" || exit
aur build -c || exit
cd ../.. || exit
done