From c5b1c36b2beeb68c2ede28e78a5aa7b8227a0d67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Gardstr=C3=B6m?= Date: Tue, 20 Oct 2020 22:37:02 +0200 Subject: rename flag --client-code to --client on xtask install --- xtask/src/main.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'xtask/src/main.rs') diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 62124041d..536a67047 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -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()?; -- cgit v1.2.3