diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-30 16:33:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 16:33:11 +0100 |
commit | c2066fff3d9bfff347a1948f18d46b6800ecb0a9 (patch) | |
tree | 68370028173e1f76c7965205bcd9e5ed09a4ace7 | |
parent | edf2ed5e5056b3f37014cafb2571dd31d65a4a96 (diff) | |
parent | b076b2bdd68a9e8952078d9df1e8c3625f02204e (diff) |
Merge pull request #34589 from Calinou/improve-cli-export-help
Fix and improve command-line exporting help
-rw-r--r-- | main/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/main.cpp b/main/main.cpp index 81b12b91c5..c1dc4e37ca 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -286,8 +286,8 @@ void Main::print_help(const char *p_binary) { OS::get_singleton()->print(" -s, --script <script> Run a script.\n"); OS::get_singleton()->print(" --check-only Only parse for errors and quit (use with --script).\n"); #ifdef TOOLS_ENABLED - OS::get_singleton()->print(" --export <target> Export the project using the given export target. Export only main pack if path ends with .pck or .zip.\n"); - OS::get_singleton()->print(" --export-debug <target> Like --export, but use debug template.\n"); + OS::get_singleton()->print(" --export <target> <path> Export the project using the given export target. Export only main pack if path ends with .pck or .zip. <path> is relative to the project directory.\n"); + OS::get_singleton()->print(" --export-debug <target> <path> Like --export, but use debug template.\n"); OS::get_singleton()->print(" --doctool <path> Dump the engine API reference to the given <path> in XML format, merging if existing files are found.\n"); OS::get_singleton()->print(" --no-docbase Disallow dumping the base types (used with --doctool).\n"); OS::get_singleton()->print(" --build-solutions Build the scripting solutions (e.g. for C# projects).\n"); |