diff options
Diffstat (limited to 'all.sh')
| -rwxr-xr-x | all.sh | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,5 +2,9 @@ TOOLCHAIN_VERSION="$(go version)" cd "$(dirname -- "$0")/" -echo "# Building cmd/dist using ${TOOLCHAIN_VERSION}." -go run -v --tags=dist ./cmd/dist +echo "Building cmd/dist using ${TOOLCHAIN_VERSION}." +FLAGS='' +if test -n "$VERBOSE"; then + FLAGS="$FLAGS -v" +fi +go run $FLAGS --tags=dist ./cmd/dist |
