fix(format): Fix format command confirmation prompt to correctly check user response
Some checks failed
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped

This commit is contained in:
2025-08-07 21:13:12 +00:00
parent 20a53d4d92
commit 49a5a66440
4 changed files with 336 additions and 95 deletions

View File

@@ -135,7 +135,7 @@ export let run = async (options: {
default: true
});
if (!(response as any).proceed) {
if (!(response as any).value) {
logger.log('info', 'Format operation cancelled by user');
return;
}