WIP, nae nae

This commit is contained in:
AJ ONeal 2019-06-20 21:17:28 -06:00
parent 1e7f37a886
commit 925fa0dc67
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ func semVer(desc string) string {
}
func gitTimestamp(desc string) (time.Time, error) {
args := strings.Split(fmt.Sprintf("git show %s --format='%%cd' --date='format:%%Y-%%m-%%dT%%H:%%M:%%SZ%%z' --no-patch", desc), " ")
args := strings.Split(fmt.Sprintf("git show %s --format=%%cd --date=format:%%Y-%%m-%%dT%%H:%%M:%%SZ%%z --no-patch", desc), " ")
cmd := exec.Command(args[0], args[1:]...)
out, err := cmd.CombinedOutput()
fmt.Printf("args:\n%#v\n\n", args)