From 1d6848cd174b02ff7abf3d682e94653e484cb87d Mon Sep 17 00:00:00 2001 From: Simone Corsi Date: Thu, 14 Oct 2021 08:57:35 +0200 Subject: [PATCH] fix: should avoid index lock --- src/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.ts b/src/helpers.ts index 0f7affe..5e29fc7 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -105,9 +105,9 @@ export async function pushNewFiles(files: File[] = []): Promise { files.map(async ({ filename, data }) => { await fsp.writeFile(filename, data); await git.add(filename); - await git.commit(`chore(${filename}): updated ${filename}`); }) ); + await git.commit(`chore(updates): updated entries in files`); await git.push(); }