From 7faa683237a04c069efef6642fc86caa4e33a710 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Wed, 24 Jul 2024 11:16:57 +0200 Subject: [PATCH] Print first date then commit hash for benchmark results --- benchmark/benchmark.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark.go b/benchmark/benchmark.go index 49e9ca4..6878535 100644 --- a/benchmark/benchmark.go +++ b/benchmark/benchmark.go @@ -31,7 +31,7 @@ func main() { } now := time.Now().Format(time.DateOnly) - resultFile := path.Join(".", "results", head+"_"+now+".txt") + resultFile := path.Join(".", "results", now+"_"+head+".txt") log.Printf("Writing results to %s", resultFile) outFile, err := os.Create(resultFile) if err != nil {