GoPLS Viewer

Home|gopls/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
7set -e -o -x
8
9LDFLAGS="-X main.version=$(git describe --always --dirty='*')"
10
11GOOS=windows GOARCH=386 go build -o build/installer.exe    -ldflags="$LDFLAGS"
12GOOS=linux GOARCH=386   go build -o build/installer_linux  -ldflags="$LDFLAGS"
13GOOS=darwin GOARCH=386  go build -o build/installer_darwin -ldflags="$LDFLAGS"
14
MembersX
Members
X