1
0
Fork 0
mirror of https://github.com/Luzifer/promcertcheck.git synced 2024-11-14 02:32:43 +00:00
promcertcheck/vendor/github.com/juju/errors/path.go
Knut Ahlers 0cb4378524
Update dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-09-28 23:49:57 +02:00

19 lines
394 B
Go

// Copyright 2013, 2014 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package errors
import (
"fmt"
"go/build"
"os"
"path/filepath"
"strings"
)
var goPath = build.Default.GOPATH
var srcDir = filepath.Join(goPath, "src")
func trimGoPath(filename string) string {
return strings.TrimPrefix(filename, fmt.Sprintf("%s%s", srcDir, string(os.PathSeparator)))
}