Skip to content

Commit 6790937

Browse files
authored
Add missing spawn event on ReadOnlySwiftProcess (#1410)
1 parent 85c9a32 commit 6790937

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/tasks/SwiftProcess.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ export class ReadOnlySwiftProcess implements SwiftProcess {
187187
cwd: this.options.cwd,
188188
env: { ...process.env, ...this.options.env },
189189
});
190+
this.spawnEmitter.fire();
190191

191192
this.spawnedProcess.stdout.on("data", data => {
192193
this.writeEmitter.fire(data.toString());

0 commit comments

Comments
 (0)