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 {