Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / cmd / getgo / make.bash
1 #!/bin/bash
2
3 # Copyright 2017 The Go Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style
5 # license that can be found in the LICENSE file.
6
7 set -e -o -x
8
9 LDFLAGS="-X main.version=$(git describe --always --dirty='*')"
10
11 GOOS=windows GOARCH=386 go build -o build/installer.exe    -ldflags="$LDFLAGS"
12 GOOS=linux GOARCH=386   go build -o build/installer_linux  -ldflags="$LDFLAGS"
13 GOOS=darwin GOARCH=386  go build -o build/installer_darwin -ldflags="$LDFLAGS"