1
0
Fork 0
mirror of https://github.com/vbatts/git-validation.git synced 2024-11-17 22:08:39 +00:00

git: fix corruption in field values

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-04-05 14:53:57 -04:00
parent 3ff2ef6b70
commit 1a447a0dfc

View file

@ -1,7 +1,6 @@
package git
import (
"bytes"
"os"
"os/exec"
"strings"
@ -64,16 +63,15 @@ type CommitEntry map[string]string
// LogCommit assembles the full information on a commit from its commit hash
func LogCommit(commit string) (*CommitEntry, error) {
buf := bytes.NewBuffer([]byte{})
c := CommitEntry{}
for k, v := range FieldNames {
cmd := exec.Command("git", "log", "-1", `--pretty=format:`+k+``, commit)
cmd.Stdout = buf
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
out, err := cmd.Output()
if err != nil {
return nil, err
}
c[v] = strings.TrimSpace(string(buf.Bytes()))
c[v] = strings.TrimSpace(string(out))
}
return &c, nil