bd5405189e
Among those one real bug.
12 lines
108 B
Bash
Executable File
12 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
source build.bash
|
|
|
|
go test ./... $*
|
|
|
|
go tool vet -shadow=true .
|