dockerignore, internal/build: forward correct git folder

This commit is contained in:
Péter Szilágyi
2017-11-12 22:51:19 +02:00
parent cb8bbe7081
commit e401536c97
3 changed files with 8 additions and 7 deletions

View File

@ -82,14 +82,15 @@ func Env() Environment {
// LocalEnv returns build environment metadata gathered from git.
func LocalEnv() Environment {
env := applyEnvFlags(Environment{Name: "local", Repo: "ethereum/go-ethereum"})
head := ReadGitFile("HEAD")
head := readGitFile("HEAD")
if splits := strings.Split(head, " "); len(splits) == 2 {
head = splits[1]
} else {
return env
}
if env.Commit == "" {
env.Commit = ReadGitFile(head)
env.Commit = readGitFile(head)
}
if env.Branch == "" {
if head != "HEAD" {