We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb97aea commit 7baf48bCopy full SHA for 7baf48b
scriptmodules/admin/builder.sh
@@ -22,7 +22,7 @@ function module_builder() {
22
23
local id
24
for id in "${ids[@]}"; do
25
- printMsgs "heading" "Building module $id"
+ printMsgs "console" "Checking module $id ..."
26
# don't build binaries for modules with flag nobin
27
# eg scraper which fails as go1.8 doesn't work under qemu
28
if hasFlag "${__mod_info[$id/flags]}" "nobin"; then
@@ -49,6 +49,8 @@ function module_builder() {
49
if [[ "$?" -eq 1 ]]; then
50
printMsgs "console" "No update was found."
51
continue
52
+ else
53
+ printMsgs "console" "Update found."
54
fi
55
56
# build, install and create binary archive.
0 commit comments