1#!/bin/bash 2 3set -e 4go build -o gosumcheck.exe 5export GONOSUMDB=*/text # rsc.io/text but not golang.org/x/text 6./gosumcheck.exe "$@" -v test.sum 7rm -f ./gosumcheck.exe 8echo PASS
View as plain text