Skip to content

Commit 7baf48b

Browse files
committed
builder - improve log messages
1 parent bb97aea commit 7baf48b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scriptmodules/admin/builder.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function module_builder() {
2222

2323
local id
2424
for id in "${ids[@]}"; do
25-
printMsgs "heading" "Building module $id"
25+
printMsgs "console" "Checking module $id ..."
2626
# don't build binaries for modules with flag nobin
2727
# eg scraper which fails as go1.8 doesn't work under qemu
2828
if hasFlag "${__mod_info[$id/flags]}" "nobin"; then
@@ -49,6 +49,8 @@ function module_builder() {
4949
if [[ "$?" -eq 1 ]]; then
5050
printMsgs "console" "No update was found."
5151
continue
52+
else
53+
printMsgs "console" "Update found."
5254
fi
5355

5456
# build, install and create binary archive.

0 commit comments

Comments
 (0)