mirror of
https://github.com/sot-tech/mochi.git
synced 2026-05-18 05:44:49 -07:00
8 lines
137 B
Bash
8 lines
137 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Install golint and go vet.
|
|
go get -u golang.org/x/lint/golint
|
|
go get -u golang.org/x/tools/cmd/...
|
|
|
|
go mod download |