From 59e18bce0a22a070727c012df3901b634919f782 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Fri, 21 Jul 2017 22:06:50 +0200 Subject: [PATCH] Fix build.go --- build.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.go b/build.go index 1f9df0e76..d8259d559 100644 --- a/build.go +++ b/build.go @@ -30,7 +30,9 @@ var config = struct { Name: "restic", // name of the program executable and directory Namespace: "github.com/restic/restic", // subdir of GOPATH, e.g. "github.com/foo/bar" Main: "github.com/restic/restic/cmd/restic", // package name for the main package - Tests: []string{"internal/...", "cmd/..."}, // tests to run + Tests: []string{ // tests to run + "github.com/restic/restic/internal/...", + "github.com/restic/restic/cmd/..."}, } // specialDir returns true if the file begins with a special character ('.' or '_').