diff --git a/src/commands/code/push.ts b/src/commands/code/push.ts index 4cee028..817fbce 100644 --- a/src/commands/code/push.ts +++ b/src/commands/code/push.ts @@ -94,6 +94,9 @@ export default class Push extends AuthenticatedCommand { await tasks.run(); } catch (error: any) { logger.debug(error, this.DEBUG_TAG); + + // need to signal to the parent process that the command failed + process.exit(1); } } }