Update git.ts

This commit is contained in:
James Ives 2022-07-17 09:22:37 -04:00
parent 22bc971733
commit a9eae6fc14

View File

@ -310,8 +310,7 @@ export async function deploy(action: ActionInterface): Promise<Status> {
// If the push failed for any reason other than being rejected,
// there is a problem
console.log('THE LOG---', pushResult.stderr)
if (!rejected && pushResult.stderr) throw new Error(pushResult.stderr)
if (!rejected && pushResult.stderr.includes('fatal:')) throw new Error(pushResult.stderr)
} while (rejected)
}