mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 11:32:13 +00:00
Merge pull request #99300 from akien-mga/revert-pr98895
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
🔗 GHA / 🪲 Godot CPP (push) Has been cancelled
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
🔗 GHA / 🪲 Godot CPP (push) Has been cancelled
Revert "Warn on unknown command line arguments"
This commit is contained in:
commit
5efd124ca1
@ -1801,13 +1801,6 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
} else if (arg == "--" || arg == "++") {
|
||||
adding_user_args = true;
|
||||
} else {
|
||||
if (!FileAccess::exists(arg) && !DirAccess::exists(arg)) {
|
||||
// Warn if the argument isn't recognized by Godot *and* the file/folder
|
||||
// specified by a positional argument doesn't exist.
|
||||
// This allows projects to read file or folder paths as a positional argument
|
||||
// without printing a warning, as this scenario can't make use of user command line arguments.
|
||||
WARN_PRINT(vformat("Unknown command line argument \"%s\". User arguments should be passed after a -- or ++ separator, e.g. \"-- %s\".", arg, arg));
|
||||
}
|
||||
main_args.push_back(arg);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user