...

Text file src/golang.org/x/mod/gosumcheck/test.bash

Documentation: golang.org/x/mod/gosumcheck

     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