diff options
author | Leon Krause <lk@leonkrause.com> | 2018-05-10 20:23:36 +0200 |
---|---|---|
committer | Leon Krause <lk@leonkrause.com> | 2018-05-10 22:08:21 +0200 |
commit | c4c7270cc7108e514b596dd7f4aac53810f0186d (patch) | |
tree | 96b6048339122354f8cc9927ce4330fa485e6861 | |
parent | 942f6dfbd66c1d15a45ef6447fd883103d9678a8 (diff) | |
download | redot-engine-c4c7270cc7108e514b596dd7f4aac53810f0186d.tar.gz |
Fix help/man for --export and --export-debug
-rw-r--r-- | main/main.cpp | 4 | ||||
-rw-r--r-- | misc/dist/linux/godot.6 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/main/main.cpp b/main/main.cpp index dfc75f1b29..8fce88b22f 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -262,8 +262,8 @@ void Main::print_help(const char *p_binary) { OS::get_singleton()->print("Standalone tools:\n"); OS::get_singleton()->print(" -s, --script <script> Run a script.\n"); #ifdef TOOLS_ENABLED - OS::get_singleton()->print(" --export <target> Export the project using the given export target.\n"); - OS::get_singleton()->print(" --export-debug Use together with --export, enables debug mode for the template.\n"); + 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(" --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"); diff --git a/misc/dist/linux/godot.6 b/misc/dist/linux/godot.6 index 26ebe01af7..64495d817e 100644 --- a/misc/dist/linux/godot.6 +++ b/misc/dist/linux/godot.6 @@ -128,10 +128,10 @@ Print the frames per second to the stdout. Run a script. .TP \fB\-\-export\fR <target> -Export the project using the given export target. +Export the project using the given export target. Export only main pack if path ends with .pck or .zip. .TP \fB\-\-export\-debug\fR -Use together with \fB\-\-export\fR, enables debug mode for the template. +Like \-\-export, but use debug template. .TP \fB\-\-doctool\fR <path> Dump the engine API reference to the given <path> in XML format, merging if existing files are found. |