9 lines
178 B
Bash
9 lines
178 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
go build -o gosumcheck.exe
|
|
export GONOSUMDB=*/text # rsc.io/text but not golang.org/x/text
|
|
./gosumcheck.exe "$@" -v test.sum
|
|
rm -f ./gosumcheck.exe
|
|
echo PASS
|