From eba453f09e1a7443e2989376f399f7e6ed8ac334 Mon Sep 17 00:00:00 2001 From: Arik Jones Date: Thu, 19 Sep 2024 11:02:35 -0500 Subject: [PATCH] fix: rollup output file name (again) --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 0edabb9..c16b153 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -159,7 +159,7 @@ func runRollup() error { // Generate the output file name timestamp := time.Now().Format("20060102-150405") - outputFileName := fmt.Sprintf("%s-rollup-%s.rollup.md", projectName, timestamp) + outputFileName := fmt.Sprintf("%s-%s.rollup.md", projectName, timestamp) // Open the output file outputFile, err := os.Create(outputFileName)