Skip to content

Commit 3aa2f97

Browse files
author
WebFreak001
committed
Fix typescript issue
1 parent 29bed6b commit 3aa2f97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/installer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function spawnCommand(output: vscode.OutputChannel, cmd: string, args: string[],
258258
proc.stderr.on("data", function (chunk) {
259259
output.append(chunk.toString() || "null");
260260
});
261-
proc.on("exit", function (d) {
261+
proc.on("exit", function (d: any) {
262262
return cb(typeof d == "number" ? d : (d.code || -1));
263263
});
264264
}

0 commit comments

Comments
 (0)