Эх сурвалжийг харах

dockerignore, internal/build: forward correct git folder

Péter Szilágyi 8 жил өмнө
parent
commit
e401536c97

+ 3 - 3
.dockerignore

@@ -1,7 +1,7 @@
 **/.git
-/.git
-!/.git/HEAD
-!/.git/refs/heads
+.git
+!.git/HEAD
+!.git/refs/heads
 **/*_test.go
 
 build/_workspace

+ 3 - 2
internal/build/env.go

@@ -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" {

+ 2 - 2
internal/build/util.go

@@ -89,8 +89,8 @@ func RunGit(args ...string) string {
 	return strings.TrimSpace(stdout.String())
 }
 
-// ReadGitFile returns content of file in .git directory.
-func ReadGitFile(file string) string {
+// readGitFile returns content of file in .git directory.
+func readGitFile(file string) string {
 	content, err := ioutil.ReadFile(path.Join(".git", file))
 	if err != nil {
 		return ""