mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +00:00
Don't call deprecated compile regex method
This commit is contained in:
parent
c00ccdeb52
commit
743b016313
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ export async function getRustcId(dir: string): Promise<string> {
|
|||
|
||||
// do not memoize the result because the toolchain may change between runs
|
||||
const data = await execute(`${rustcPath} -V -v`, { cwd: dir });
|
||||
const rx = /commit-hash:\s(.*)$/m.compile();
|
||||
const rx = /commit-hash:\s(.*)$/m;
|
||||
|
||||
return rx.exec(data)![1];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue