Files
LearnGO/go/pkg/mod/golang.org/x/mod@v0.14.0/gosumcheck/test.bash
T
2024-09-19 21:38:24 -04:00

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