mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 12:33:35 +01:00
Build using TS 2.5 (#33705)
* Build using TS 2.5 Fixes #33704 * Remove explicit return type
This commit is contained in:
@@ -82,7 +82,7 @@ function findGitDarwin(): Promise<IGit> {
|
||||
|
||||
function getVersion(path: string) {
|
||||
// make sure git executes
|
||||
cp.exec('git --version', (err, stdout: Buffer) => {
|
||||
cp.exec('git --version', (err: Error, stdout: any) => {
|
||||
if (err) {
|
||||
return e('git not found');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user