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}`);