diff options
author | Aleksey Kladov <[email protected]> | 2019-10-17 17:36:55 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-10-17 20:54:38 +0100 |
commit | 7b15c4f7ae95e2e855cb783871906fa7bf364c4c (patch) | |
tree | 20a69aaf3ad803a4ca689ec143e9cc0a5049d5ca /crates/ra_tools/src/help.rs | |
parent | 65ab81e35868c09ac9c93cf1d53a607f5caede53 (diff) |
WIP: move to xtasks
Diffstat (limited to 'crates/ra_tools/src/help.rs')
-rw-r--r-- | crates/ra_tools/src/help.rs | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/crates/ra_tools/src/help.rs b/crates/ra_tools/src/help.rs deleted file mode 100644 index 72dfabacd..000000000 --- a/crates/ra_tools/src/help.rs +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | //! FIXME: write short doc here | ||
2 | |||
3 | pub const GLOBAL_HELP: &str = "tasks | ||
4 | |||
5 | USAGE: | ||
6 | ra_tools <SUBCOMMAND> | ||
7 | |||
8 | FLAGS: | ||
9 | -h, --help Prints help information | ||
10 | |||
11 | SUBCOMMANDS: | ||
12 | format | ||
13 | format-hook | ||
14 | fuzz-tests | ||
15 | gen-syntax | ||
16 | gen-tests | ||
17 | install-ra | ||
18 | lint"; | ||
19 | |||
20 | pub const INSTALL_RA_HELP: &str = "ra_tools-install-ra | ||
21 | |||
22 | USAGE: | ||
23 | ra_tools.exe install-ra [FLAGS] | ||
24 | |||
25 | FLAGS: | ||
26 | --client-code | ||
27 | -h, --help Prints help information | ||
28 | --jemalloc | ||
29 | --server"; | ||
30 | |||
31 | pub fn print_no_param_subcommand_help(subcommand: &str) { | ||
32 | eprintln!( | ||
33 | "ra_tools-{} | ||
34 | |||
35 | USAGE: | ||
36 | ra_tools {} | ||
37 | |||
38 | FLAGS: | ||
39 | -h, --help Prints help information", | ||
40 | subcommand, subcommand | ||
41 | ); | ||
42 | } | ||
43 | |||
44 | pub const INSTALL_RA_CONFLICT: &str = | ||
45 | "error: The argument `--server` cannot be used with `--client-code` | ||
46 | |||
47 | For more information try --help"; | ||