forked from rosa/hakurei
This makes output less noisy. The build is fast enough not to require progress indication. Signed-off-by: Ophestra <cat@gensokyo.uk>
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
TOOLCHAIN_VERSION="$(go version)"
|
|
cd "$(dirname -- "$0")/"
|
|
echo "Building cmd/dist using ${TOOLCHAIN_VERSION}."
|
|
FLAGS=''
|
|
if test -n "$VERBOSE"; then
|
|
FLAGS="$FLAGS -v"
|
|
fi
|
|
go run $FLAGS --tags=dist ./cmd/dist
|