mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Warn users when using non existing --export flag, replaced by --export-release
See #73782.
This commit is contained in:
parent
999bb91dc6
commit
0a9deaa440
@ -1131,6 +1131,9 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
cmdline_tool = true;
|
||||
main_args.push_back(I->get());
|
||||
#ifndef DISABLE_DEPRECATED
|
||||
} else if (I->get() == "--export") { // For users used to 3.x syntax.
|
||||
OS::get_singleton()->print("The Godot 3 --export option was changed to more explicit --export-release / --export-debug / --export-pack options.\nSee the --help output for details.\n");
|
||||
goto error;
|
||||
} else if (I->get() == "--convert-3to4") {
|
||||
// Actually handling is done in start().
|
||||
cmdline_tool = true;
|
||||
|
Loading…
Reference in New Issue
Block a user