diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-02-16 10:40:56 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-16 10:40:56 +0000 |
commit | 35dd04555d0a11680150246179fa3322b6e35d80 (patch) | |
tree | d10aa98350c3b45b4c1a0aadeac9604ca6fa147e /editors | |
parent | d9767727168c68b4ecf930c9dab5a950c0be8e7b (diff) | |
parent | 3068aab82d06f4fa2082bcaa34d57452247a6cbb (diff) |
Merge #3163
3163: vscode: fix the default value for withSysroot r=matklad a=Veetaha
See [zulip](https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/withSysroot.20is.20false.20.3F)
cc @edwin0cheng
Co-authored-by: Veetaha <[email protected]>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 7866ed7e1..8c033052b 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts | |||
@@ -153,5 +153,5 @@ export class Config { | |||
153 | } | 153 | } |
154 | 154 | ||
155 | // for internal use | 155 | // for internal use |
156 | get withSysroot() { return this.cfg.get("withSysroot", false); } | 156 | get withSysroot() { return this.cfg.get("withSysroot", true) as boolean; } |
157 | } | 157 | } |