2021-04-26 18:47:13 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-04-26 18:50:23 +02:00
|
|
|
# build all packages
|
2021-04-26 18:47:13 +02:00
|
|
|
for PKG in pkg/*; do
|
|
|
|
cd "${PKG}" || exit
|
|
|
|
aur build -c || exit
|
|
|
|
cd ../.. || exit
|
|
|
|
done
|
2021-04-26 18:50:23 +02:00
|
|
|
|
|
|
|
# push remote repository
|
|
|
|
arch-repo-push-new || exit
|