We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f0c725 commit a167cafCopy full SHA for a167caf
src/svnFinder.ts
@@ -104,7 +104,7 @@ export class SvnFinder {
104
child.stdout.on("data", (b: Buffer) => buffers.push(b));
105
child.on("error", cpErrorHandler(e));
106
child.on(
107
- "exit",
+ "close",
108
code =>
109
code
110
? e(new Error("Not found"))
@@ -127,7 +127,7 @@ export class SvnFinder {
127
128
129
130
131
132
code || Buffer.concat(buffers).toString("utf8").length < 100
133
0 commit comments