arch/build-all.sh

12 lines
182 B
Bash

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