aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2025-05-19 07:19:28 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2025-05-19 09:28:17 -0400
commitfa63d351acea69ecb6a1cb1b127a12e17538124d (patch)
treecf834b5f44d5cb2f77652e20ca5a07f8f005672d /src/main.cpp
parente8d52ac2bcbc0b618b079df1c04316c018cfb333 (diff)
Add missing commands to `odin help`
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d8b866e83..818e5b60e 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2289,6 +2289,12 @@ gb_internal int print_show_help(String const arg0, String command, String option
print_usage_line(1, "bundle <platform> Bundles a directory in a specific layout for that platform");
print_usage_line(2, "Supported platforms:");
print_usage_line(3, "android");
+ } else if (command == "report") {
+ print_usage_header_once();
+ print_usage_line(1, "report Prints information useful to reporting a bug.");
+ } else if (command == "root") {
+ print_usage_header_once();
+ print_usage_line(1, "root Prints the root path where Odin looks for the builtin collections.");
}
bool doc = command == "doc";