We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6477632 commit 015bf20Copy full SHA for 015bf20
lib/landing_session.js
@@ -62,8 +62,8 @@ export default class LandingSession extends Session {
62
const shouldContinue = await cli.prompt(
63
`This PR ${status} to land, do you want to continue?`, { defaultAnswer });
64
if (!shouldContinue) {
65
- cli.setExitCode(1);
66
- return this.abort(false);
+ await this.abort(false);
+ return process.exit(1);
67
}
68
69
this.saveMetadata(metadata);
0 commit comments