From c7341a63def4b7281a1df36a86aa2907a4b968d1 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Wed, 5 Jun 2024 23:28:37 -0500 Subject: [PATCH] Fix git log --- build_garden.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_garden.js b/build_garden.js index ea42e0e2..bd7dd5a0 100644 --- a/build_garden.js +++ b/build_garden.js @@ -194,7 +194,7 @@ function toSlug(string) { // Build changelog fs.mkdirSync("./site/changelog"); - const { stdout } = await exec('git log --after="2024-06-03T0:0:0+0000" --pretty=%H site/garden'); + const { stdout } = await exec('git log master --after="2024-06-03T0:0:0+0000" --pretty=%H site/garden'); console.log(stdout); const entries = await Promise.all(stdout.split("\n").filter(p => p).map(hash => new Promise(async (resolve) => { const { stdout: title } = await exec(`git show --quiet --format=%s ${hash}`);