vikunja/vendor/github.com/kisielk/gotool/go13.go
konrad 018dd8164c
All checks were successful
the build was successful
[CI] Add more checks (#43)
2018-12-28 22:15:05 +00:00

16 lines
213 B
Go

// +build !go1.4
package gotool
import (
"go/build"
"path/filepath"
"runtime"
)
var gorootSrc = filepath.Join(runtime.GOROOT(), "src", "pkg")
func shouldIgnoreImport(p *build.Package) bool {
return true
}