xbps-src/bulk: silence output if there are no pkgs to build.
This commit is contained in:
parent
3f73d204ea
commit
ad71cffe79
@ -64,6 +64,9 @@ bulk_update() {
|
|||||||
local args="$1" pkgs f
|
local args="$1" pkgs f
|
||||||
|
|
||||||
pkgs="$(bulk_build ${args})"
|
pkgs="$(bulk_build ${args})"
|
||||||
|
if [ -z "$pkgs" ]; then
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
msg_normal "xbps-src: the following packages must be rebuilt and updated:\n"
|
msg_normal "xbps-src: the following packages must be rebuilt and updated:\n"
|
||||||
for f in ${pkgs}; do
|
for f in ${pkgs}; do
|
||||||
echo " $f"
|
echo " $f"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user