From 0d5cdd5b853911cf3937b6c0ef2b1a65477832de Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 26 Feb 2023 17:56:17 +0100 Subject: [PATCH] fix: do not run `git cherry-pick --abort` on failure --- lib/landing_session.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/landing_session.js b/lib/landing_session.js index 240b7598..c4745be1 100644 --- a/lib/landing_session.js +++ b/lib/landing_session.js @@ -121,8 +121,6 @@ export default class LandingSession extends Session { ignoreFailure: false }); } catch (ex) { - await forceRunAsync('git', ['cherry-pick', '--abort']); - cli.error('Failed to apply patches'); process.exit(1); }