mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +00:00
rename flag --client-code to --client on xtask install
This commit is contained in:
parent
d0bb051ef7
commit
c5b1c36b2b
1 changed files with 8 additions and 8 deletions
|
@ -46,20 +46,20 @@ USAGE:
|
|||
cargo xtask install [FLAGS]
|
||||
|
||||
FLAGS:
|
||||
--client-code[=CLIENT] Install only VS Code plugin.
|
||||
CLIENT is one of 'code', 'code-insiders', 'codium', or 'code-oss'
|
||||
--server Install only the language server
|
||||
--mimalloc Use mimalloc for server
|
||||
-h, --help Prints help information
|
||||
--client[=CLIENT] Install only VS Code plugin.
|
||||
CLIENT is one of 'code', 'code-insiders', 'codium', or 'code-oss'
|
||||
--server Install only the language server
|
||||
--mimalloc Use mimalloc for server
|
||||
-h, --help Prints help information
|
||||
"
|
||||
);
|
||||
return Ok(());
|
||||
}
|
||||
let server = args.contains("--server");
|
||||
let client_code = args.contains("--client-code");
|
||||
let client_code = args.contains("--client");
|
||||
if server && client_code {
|
||||
eprintln!(
|
||||
"error: The argument `--server` cannot be used with `--client-code`\n\n\
|
||||
"error: The argument `--server` cannot be used with `--client`\n\n\
|
||||
For more information try --help"
|
||||
);
|
||||
return Ok(());
|
||||
|
@ -68,7 +68,7 @@ FLAGS:
|
|||
let malloc =
|
||||
if args.contains("--mimalloc") { Malloc::Mimalloc } else { Malloc::System };
|
||||
|
||||
let client_opt = args.opt_value_from_str("--client-code")?;
|
||||
let client_opt = args.opt_value_from_str("--client")?;
|
||||
|
||||
args.finish()?;
|
||||
|
||||
|
|
Loading…
Reference in a new issue