forked from rosa/hakurei
This is much more robust than a shell script. Signed-off-by: Ophestra <cat@gensokyo.uk>
7 lines
161 B
Bash
Executable File
7 lines
161 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
TOOLCHAIN_VERSION="$(go version)"
|
|
cd "$(dirname -- "$0")/"
|
|
echo "# Building cmd/dist using ${TOOLCHAIN_VERSION}."
|
|
go run -v --tags=dist ./cmd/dist
|