Allow both -help and --help if passed as init_filename

This commit is contained in:
gingerBill
2021-11-15 22:10:31 +00:00
parent e814a3693f
commit 1ec0b79345
+2 -1
View File
@@ -2541,7 +2541,8 @@ int main(int arg_count, char const **arg_ptr) {
return 1;
}
if (init_filename == "-help") {
if (init_filename == "-help" ||
init_filename == "--help") {
build_context.show_help = true;
}