mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
update build-all.sh
This commit is contained in:
parent
42d42e4560
commit
30ad294d69
12
build-all.sh
Normal file → Executable file
12
build-all.sh
Normal file → Executable file
@ -2,9 +2,15 @@
|
||||
|
||||
# build all packages
|
||||
for PKG in pkg/*; do
|
||||
cd "${PKG}" || exit
|
||||
aur build -c || exit
|
||||
cd ../.. || exit
|
||||
# check if PKGBUILD exists, otherwise skip
|
||||
[ -f "${PKG}/PKGBUILD" ] || { echo "${PKG} does not contain a PKGBUILD file - skipping this directory!"; continue; }
|
||||
|
||||
cd "${PKG}" || exit
|
||||
|
||||
aur build -c || exit
|
||||
# makepkg -Ccsr || exit
|
||||
|
||||
cd ../.. || exit
|
||||
done
|
||||
|
||||
# push remote repository
|
||||
|
Loading…
Reference in New Issue
Block a user