From 17bd5291150d7a8a364a3eb43bb0c6705fda74d9 Mon Sep 17 00:00:00 2001 From: BradBot_1 Date: Thu, 23 Feb 2023 21:46:03 +0000 Subject: [PATCH] =?UTF-8?q?CHORE:=20add=20a=20dash=20=F0=9F=A4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Git/GitManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Git/GitManager.ts b/src/Git/GitManager.ts index b622a4a..4ce60c2 100644 --- a/src/Git/GitManager.ts +++ b/src/Git/GitManager.ts @@ -32,7 +32,7 @@ export async function cloneRepo(repo: string, out: string = __dirname): Promise< export async function push(repo: string, out: string = __dirname): Promise { const git = Git(out); git.addRemote("fumo", repo); - await git.push(["fumo", "-force"]); + await git.push(["fumo", "--force"]); } export async function getCommitAuthors(out: string = __dirname): Promise {