Skip to content

Commit

Permalink
#1695: ensure showing what to do in VSCE when the project config need…
Browse files Browse the repository at this point in the history
…s an update
  • Loading branch information
JoernBerkefeld committed Sep 11, 2024
1 parent 9076243 commit 09f9d04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/util/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 09f9d04

Please sign in to comment.