convert functions to async

This commit is contained in:
Tejas Srikanth 2023-03-30 11:59:07 -04:00
parent df0e13e2c1
commit 15fc6f9d42
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ export async function createAndPublishNewBranch(repoPath) {
}
}
export function removeRepo(repoPath) {
export async function removeRepo(repoPath) {
try{
execSync(`rm -r ${repoPath}`);
} catch (error){