mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Fixing a typo that didn't properly start EDE
This commit is contained in:
parent
7df3f329ee
commit
b483359409
@ -42,9 +42,9 @@ static void help(void) {
|
|||||||
puts("(including various bits and pieces desktop needs)");
|
puts("(including various bits and pieces desktop needs)");
|
||||||
puts("Options:");
|
puts("Options:");
|
||||||
puts(" -h, --help this help");
|
puts(" -h, --help this help");
|
||||||
puts(" -s, --startup run in starup mode");
|
puts(" -s, --startup run in startup mode");
|
||||||
puts(" -n, --no-splash do not show splash screen in starup mode");
|
puts(" -n, --no-splash do not show splash screen in startup mode");
|
||||||
puts(" -d, --dry-run run in starup mode, but don't execute anything");
|
puts(" -d, --dry-run run in startup mode, but don't execute anything");
|
||||||
puts(" -a, --autostart read autostart directory and run all items");
|
puts(" -a, --autostart read autostart directory and run all items");
|
||||||
puts(" -u, --autostart-safe read autostart directory and display dialog what will be run\n");
|
puts(" -u, --autostart-safe read autostart directory and display dialog what will be run\n");
|
||||||
}
|
}
|
||||||
@ -64,7 +64,7 @@ int main(int argc, char** argv) {
|
|||||||
help();
|
help();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else if(CHECK_ARGV(a, "-s", "--starup"))
|
else if(CHECK_ARGV(a, "-s", "--startup"))
|
||||||
do_startup = true;
|
do_startup = true;
|
||||||
else if(CHECK_ARGV(a, "-d", "--dry-run"))
|
else if(CHECK_ARGV(a, "-d", "--dry-run"))
|
||||||
do_dryrun = true;
|
do_dryrun = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user