Files
avo/script/bootstrap

11 lines
320 B
Plaintext
Raw Normal View History

2018-12-05 00:27:42 -08:00
#!/bin/bash -ex
2018-12-17 21:13:00 -08:00
# Limit dependencies to golang.org/x repos
go get -u \
golang.org/x/arch/x86/... \
golang.org/x/tools/go/...
2018-12-05 00:53:16 -08:00
2018-12-05 00:27:42 -08:00
# Install golangci-lint
golangci_lint_version='v1.12.3'
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin ${golangci_lint_version}