mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
Auto merge of #13402 - HKalbasi:patch-1, r=Veykril
Cast runnableEnv items to string fix #13390 An alternative approach could be raising an error if there is non string values.
This commit is contained in:
commit
c09151c619
1 changed files with 15 additions and 1 deletions
|
@ -133,7 +133,21 @@ export class Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
get runnableEnv() {
|
get runnableEnv() {
|
||||||
return this.get<RunnableEnvCfg>("runnableEnv");
|
const item = this.get<any>("runnableEnv");
|
||||||
|
if (!item) return item;
|
||||||
|
const fixRecord = (r: Record<string, any>) => {
|
||||||
|
for (const key in r) {
|
||||||
|
if (typeof r[key] !== "string") {
|
||||||
|
r[key] = String(r[key]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if (item instanceof Array) {
|
||||||
|
item.forEach((x) => fixRecord(x.env));
|
||||||
|
} else {
|
||||||
|
fixRecord(item);
|
||||||
|
}
|
||||||
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
get restartServerOnConfigChange() {
|
get restartServerOnConfigChange() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue