blob: a9b121b88cd2c6b8f4ac13ef08308a78e44fc601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
source $(dirname $0)/package-list.bash
for p in "${!packages[@]}"; do
if [[ -d "$p" ]]; then
cd "$p"
(makepkg --nobuild 2>/dev/null) &
cd - 2>/dev/null
fi
done
wait
echo done
|