mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
12 lines
182 B
Bash
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
|