9 lines
300 B
Bash
Executable File
9 lines
300 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
# We intend that the arch sub-repo should be the only dependency.
|
|
go get -v -u golang.org/x/arch
|
|
|
|
# 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}
|