xbps-src/bulk: silence output if there are no pkgs to build.
This commit is contained in:
parent
3f73d204ea
commit
ad71cffe79
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue