arch/build-all.sh

8 lines
108 B
Bash
Raw Normal View History

2021-04-26 18:47:13 +02:00
#!/bin/bash
for PKG in pkg/*; do
cd "${PKG}" || exit
aur build -c || exit
cd ../.. || exit
done