diff options
author | nmio <[email protected]> | 2020-03-01 13:07:16 +0000 |
---|---|---|
committer | nmio <[email protected]> | 2020-03-01 13:07:16 +0000 |
commit | 930b70c5d27b5a5a9273d6acb7e8d4c3a6c5db62 (patch) | |
tree | 866ae76604566bd2073d0fd40c08d9bd6708ca54 /xtask | |
parent | 4b2880b886cb862cb4a7f458547c4d07e6828a91 (diff) |
Readability
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/install.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xtask/src/install.rs b/xtask/src/install.rs index 4ac16ce18..f76467cac 100644 --- a/xtask/src/install.rs +++ b/xtask/src/install.rs | |||
@@ -121,7 +121,9 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> { | |||
121 | 121 | ||
122 | if !installed_extensions.contains("rust-analyzer") { | 122 | if !installed_extensions.contains("rust-analyzer") { |
123 | bail!( | 123 | bail!( |
124 | "Could not install the Visual Studio Code extension. Please make sure you have at least NodeJS 12.x together with the latest version of VS Code installed and try again. Note that installing via xtask install does not work for VS Code Remote, instead you’ll need to install the .vsix manually." | 124 | "Could not install the Visual Studio Code extension. \ |
125 | Please make sure you have at least NodeJS 12.x together with the latest version of VS Code installed and try again. \ | ||
126 | Note that installing via xtask install does not work for VS Code Remote, instead you’ll need to install the .vsix manually." | ||
125 | ); | 127 | ); |
126 | } | 128 | } |
127 | 129 | ||