From 80e27f4f423605963635ec8e4c90bdf39693c329 Mon Sep 17 00:00:00 2001 From: BradBot_1 Date: Thu, 23 Feb 2023 19:35:55 +0000 Subject: [PATCH] await push --- 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 af586cc..befeb21 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); - git.push("fumo"); + await git.push("fumo"); } export async function getCommitAuthors(out: string = __dirname): Promise {