From 29c72fb30bb7d5614c0a8ebb73bee2ac7eca6608 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sun, 6 Mar 2022 17:40:35 +0100 Subject: Removed go-dashboard example. Signed-off-by: Toni Uhlig --- .../src/github.com/mattn/go-runewidth/go.test.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh (limited to 'examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh') diff --git a/examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh b/examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh deleted file mode 100644 index 012162b07..000000000 --- a/examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/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 -- cgit v1.2.3