diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-23 13:54:10 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-23 13:54:10 +0100 |
commit | 845f2a801f3fba5a3750fd07e288fc7c94337d63 (patch) | |
tree | a1dac0c103a278b3a15568a560fd1460dbff5a1a | |
parent | a5e944661d7428b2b2b114370da00065e7f3d657 (diff) | |
parent | 0a9deaa440cd28dfe18bfbbcee85ba7e793c3312 (diff) |
Merge pull request #73784 from akien-mga/expørt
Warn users when using non existing --export flag, replaced by --export-release
-rw-r--r-- | main/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index 5bb37df3ca..b15588e700 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -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; |