internal/build: fix usage of strings.TrimLeft (#16066)

This commit is contained in:
ferhat elmas 2018-02-12 10:18:35 +01:00 committed by Péter Szilágyi
parent 4065695350
commit 52ad848b2e
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ func LocalEnv() Environment {
}
if env.Branch == "" {
if head != "HEAD" {
env.Branch = strings.TrimLeft(head, "refs/heads/")
env.Branch = strings.TrimPrefix(head, "refs/heads/")
}
}
if info, err := os.Stat(".git/objects"); err == nil && info.IsDir() && env.Tag == "" {