11 lines
136 B
Bash
Executable File
11 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
|
|
export GOFLAGS="-mod=vendor"
|
|
go mod tidy
|
|
go mod vendor
|
|
go generate -mod=vendor ./...
|
|
go build -mod=vendor .
|