build.sh: Fix a stupid error that prevents building without -v

Signed-off-by: Daniel Frank <git@danielfrank.net>
This commit is contained in:
Daniel Frank 2019-09-21 16:38:11 +02:00
parent 678c61ae10
commit a60bb91b77
Signed by: tokudan
GPG key ID: 063CCCAD04182D32

View file

@ -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