From cdc17121b8df7a6eefed798a2c71a35e8580bc1f Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 9 May 2013 13:19:09 -0500 Subject: [PATCH] Display correct import path for gocov. This was pointed out by kaptin on IRC. --- cov_report.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cov_report.sh b/cov_report.sh index ef5cf816d..5cc6f201a 100644 --- a/cov_report.sh +++ b/cov_report.sh @@ -11,7 +11,7 @@ type gocov >/dev/null 2>&1 if [ $? -ne 0 ]; then echo >&2 "This script requires the gocov tool." echo >&2 "You may obtain it with the following command:" - echo >&2 "go get github.com/awx/gocov/gocov" + echo >&2 "go get github.com/axw/gocov/gocov" exit 1 fi gocov test | gocov report