mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
8 lines
108 B
Bash
8 lines
108 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for PKG in pkg/*; do
|
||
|
cd "${PKG}" || exit
|
||
|
aur build -c || exit
|
||
|
cd ../.. || exit
|
||
|
done
|