build.go: Fix path for new cmd/ subdir

This commit is contained in:
Alexander Neumann
2017-06-25 10:23:13 +02:00
committed by Zlatko Čalušić
parent 65152c7bf5
commit 90b868dfbc
+1 -1
View File
@@ -30,7 +30,7 @@ var config = struct {
}{ }{
Name: "rest-server", // name of the program executable and directory Name: "rest-server", // name of the program executable and directory
Namespace: "github.com/restic/rest-server", // subdir of GOPATH, e.g. "github.com/foo/bar" Namespace: "github.com/restic/rest-server", // subdir of GOPATH, e.g. "github.com/foo/bar"
Main: "github.com/restic/rest-server", // package name for the main package Main: "github.com/restic/rest-server/cmd/rest-server", // package name for the main package
Tests: []string{"github.com/restic/rest-server"}, // tests to run Tests: []string{"github.com/restic/rest-server"}, // tests to run
} }