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

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