Update vendor/ (progress bar deps)

This commit is contained in:
Daniele Rondina
2020-11-20 18:16:49 +01:00
parent 60d5c9dfd5
commit 651ea17548
149 changed files with 8651 additions and 4362 deletions

12
vendor/github.com/mattn/go-isatty/go.test.sh generated vendored Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -race -coverprofile=profile.out -covermode=atomic "$d"
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done