fix(coding-agent): exit on resume cancel

This commit is contained in:
Mario Zechner 2026-01-19 14:01:03 +01:00
parent 0e5977ad39
commit 4cc1c96495

View file

@ -449,7 +449,8 @@ export async function main(args: string[]) {
time("selectSession");
if (!selectedPath) {
console.log(chalk.dim("No session selected"));
return;
stopThemeWatcher();
process.exit(0);
}
sessionManager = SessionManager.open(selectedPath);
}