From 22bc97173302d8310cfb9a47b9111e9a7b180d44 Mon Sep 17 00:00:00 2001 From: James Ives Date: Sun, 17 Jul 2022 09:08:52 -0400 Subject: [PATCH] Update git.ts --- src/git.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/git.ts b/src/git.ts index 1bf788bd..152c4d26 100644 --- a/src/git.ts +++ b/src/git.ts @@ -310,6 +310,7 @@ export async function deploy(action: ActionInterface): Promise { // 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) } while (rejected) }