Move findExecutable to extension host

Part of #101073
This commit is contained in:
Alex Ross
2020-07-13 14:25:59 +02:00
parent a9936ddd35
commit aed6bd7e2a
6 changed files with 27 additions and 9 deletions

View File

@@ -195,4 +195,8 @@ export class ExtHostTask extends ExtHostTaskBase {
public async $jsonTasksSupported(): Promise<boolean> {
return true;
}
public async $findExecutable(command: string, cwd?: string, paths?: string[]): Promise<string> {
return win32.findExecutable(command, cwd, paths);
}
}