mirror of https://github.com/status-im/op-geth.git
internal/build: fix usage of strings.TrimLeft (#16066)
This commit is contained in:
parent
4065695350
commit
52ad848b2e
|
@ -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 == "" {
|
||||
|
|
Loading…
Reference in New Issue