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 65fb311 commit d3816adCopy full SHA for d3816ad
lib/landing_session.js
@@ -255,15 +255,12 @@ class LandingSession extends Session {
255
willBeLanded = `${head}...${willBeLanded}`;
256
}
257
258
+ this.cleanFiles();
259
+ cli.log('Temporary files removed');
260
cli.log('To finish landing:');
261
cli.log(`1. Run \`git push ${upstream} ${branch}\``);
262
const url = `https://github.com/${owner}/${repo}/pull/${prid}`;
263
cli.log(`2. Post "Landed in ${willBeLanded}" in ${url}`);
-
- const shouldClean = await cli.prompt('Clean up generated temporary files?');
264
- if (shouldClean) {
265
- this.cleanFiles();
266
- }
267
268
269
async continue() {
0 commit comments