From 0460b0fc7221a3b8683bb66b5bfd329a37ef296e Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 10 Jun 2024 20:24:22 -0500 Subject: [PATCH] more testing --- build_garden.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_garden.js b/build_garden.js index 2f8f070e..bc7af9d9 100644 --- a/build_garden.js +++ b/build_garden.js @@ -196,7 +196,7 @@ function toSlug(string) { await exec("git fetch --all") console.log("remotes: " + (await exec("git branch -r -v")).stdout); - const { stdout } = await exec('git log origin/master --after="2024-06-03T0:0:0+0000" --pretty=%H site/garden'); + const { stdout } = await exec('git log --after="2024-06-03T0:0:0+0000" --pretty=%H origin/master 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}`);