From 403fb9d656969890594e5926672339a73c901077 Mon Sep 17 00:00:00 2001 From: lowlighter <22963968+lowlighter@users.noreply.github.com> Date: Sun, 14 Mar 2021 13:36:53 +0100 Subject: [PATCH] Fix path handle for files changes --- source/app/action/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app/action/index.mjs b/source/app/action/index.mjs index 2b51fbbe..c0424e7e 100644 --- a/source/app/action/index.mjs +++ b/source/app/action/index.mjs @@ -271,7 +271,7 @@ //Check editions if ((committer.commit)||(committer.pr)) { const git = sgit() - const sha = await git.hashObject(filename) + const sha = await git.hashObject(paths.join("/renders", filename)) info("Current render sha", sha) if (committer.sha === sha) { info(`Commit to branch ${committer.branch}`, "(no changes)")