File: test.bash

package info (click to toggle)
golang-golang-x-mod 0.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 932 kB
  • sloc: sh: 6; makefile: 6
file content (8 lines) | stat: -rwxr-xr-x 178 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/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