From a60bb91b77d4f8a238d4a88d0c3f1e8b4663e491 Mon Sep 17 00:00:00 2001 From: Daniel Frank Date: Sat, 21 Sep 2019 16:38:11 +0200 Subject: [PATCH] build.sh: Fix a stupid error that prevents building without -v Signed-off-by: Daniel Frank --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 72fe790..88611d9 100755 --- a/build.sh +++ b/build.sh @@ -106,7 +106,7 @@ announce "The following targets will be generated: $targets" >&2 for t in $targets; do announce "Starting build for $t..." >&2 - make "-j$(nproc)" "GLUON_TARGET=$t" "$verbose" + make "-j$(nproc)" "GLUON_TARGET=$t" $verbose done # Remove known-broken images # shellcheck disable=SC2154