From 09f9d047221ba5a74501a72bb07ef61c76635a85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Berkefeld?= Date: Wed, 11 Sep 2024 15:47:30 +0200 Subject: [PATCH] #1695: ensure showing what to do in VSCE when the project config needs an update --- lib/util/config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util/config.js b/lib/util/config.js index 0edbba3c4..e05eab426 100644 --- a/lib/util/config.js +++ b/lib/util/config.js @@ -270,15 +270,15 @@ const config = { errorMsgOutput.push(' - ' + msg); } Util.logger.error(errorMsgOutput.join('\n')); - if (Util.skipInteraction) { - return false; - } Util.logger.info( [ 'Here is what you can do to fix these issues:', ...Array.from(solutionSet), ].join('\n- ') ); + if (Util.skipInteraction) { + return false; + } const runUpgradeNow = await confirm({ message: `Do you want to run 'mcdev upgrade' now?`, default: true,