Shell: Only prompt the user for a second 'exit' when in interactive mode

This commit is contained in:
AnotherTest 2020-10-27 17:13:43 +03:30 committed by Andreas Kling
commit 2610477836
Notes: sideshowbarker 2024-07-19 01:40:18 +09:00

View file

@ -262,6 +262,7 @@ int Shell::builtin_exit(int argc, const char** argv)
if (!parser.parse(argc, const_cast<char**>(argv)))
return 1;
if (m_is_interactive) {
if (!jobs.is_empty()) {
if (!m_should_ignore_jobs_on_next_exit) {
fprintf(stderr, "Shell: You have %zu active job%s, run 'exit' again to really exit.\n", jobs.size(), jobs.size() > 1 ? "s" : "");
@ -269,6 +270,7 @@ int Shell::builtin_exit(int argc, const char** argv)
return 1;
}
}
}
stop_all_jobs();
m_editor->save_history(get_history_path());
if (m_is_interactive)