mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
9 lines
161 B
Bash
Executable file
9 lines
161 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for xbps_pkg in $(ls -1 ./srcpkgs); do
|
|
if [[ "$xbps_pkg" == "xbps-triggers" ]]; then
|
|
continue
|
|
fi
|
|
|
|
./xbps-src pkg -Q ${xbps_pkg} || exit 1
|
|
done
|