mirror of https://github.com/BOINC/boinc.git
- client: put back --detach (because BoincTasks assumes it)
and --detach_console (because the documentation says it exists). I'm not sure why --detach_phase_two is there, but leave it.
This commit is contained in:
parent
6b6c2ac519
commit
6c1f6f4550
|
@ -142,7 +142,7 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
|
|||
check_all_logins = true;
|
||||
} else if (ARG(daemon)) {
|
||||
executing_as_daemon = true;
|
||||
} else if (ARG(detach_phase_two)) {
|
||||
} else if (ARG(detach_phase_two) || ARG(detach) || ARG(detach_console)) {
|
||||
detach_console = true;
|
||||
} else if (ARG(detach_project)) {
|
||||
if (i == argc-1) show_options = true;
|
||||
|
|
Loading…
Reference in New Issue