mirror of
https://github.com/octoleo/restic.git
synced 2024-11-13 08:46:33 +00:00
11 lines
210 B
Bash
Executable File
11 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TARGETFILE="$1"
|
|
|
|
go list ./... | while read pkg; do
|
|
go test -covermode=count -coverprofile=$(base64 <<< $pkg).cov $pkg
|
|
done
|
|
|
|
echo "mode: count" > $TARGETFILE
|
|
tail -q -n +2 *.cov >> $TARGETFILE
|