Skip to content

Commit d214d0b

Browse files
committed
Undo the target-dir hack now that 1.26.1 is released
1 parent 8322b94 commit d214d0b

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
### Unreleased
22

3+
### 0.4.5 - 2018-06-03
4+
5+
* Undo the change to target directory default (unnecessary with Rust 1.26.1)
36

47
### 0.4.4 - 2018-05-17
58

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rust",
33
"displayName": "Rust (rls)",
44
"description": "Rust language support - code completion, Intellisense, refactoring, reformatting, errors, snippets. A client for the Rust Language Server, built by the RLS team.",
5-
"version": "0.4.4",
5+
"version": "0.4.5",
66
"publisher": "rust-lang",
77
"icon": "rust-icon.png",
88
"galleryBanner": {
@@ -309,7 +309,7 @@
309309
"string",
310310
"null"
311311
],
312-
"default": "target/rls",
312+
"default": null,
313313
"description": "When specified, it places the generated analysis files at the specified target directory. By default it is placed target/rls directory."
314314
}
315315
}

src/extension.ts

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ async function makeRlsEnv(setLibPath = false): Promise<any> {
6565
}
6666
}
6767

68-
6968
console.info(`Setting sysroot to`, sysroot);
7069
if (!process.env.RUST_SRC_PATH) {
7170
env.RUST_SRC_PATH = sysroot + '/lib/rustlib/src/rust/src';

0 commit comments

Comments
 (0)