Skip to content

Commit 8800eca

Browse files
Merge pull request #116 from telerik/fatme/fix-livesync
fix: use correct spawn method in order to fix livesync
2 parents f9307ab + 2b30544 commit 8800eca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/iphone-simulator-xcode-simctl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class XCodeSimctlSimulator extends IPhoneSimulatorNameGetter implements I
170170
}
171171
} else {
172172
const logFilePath = path.join(osenv.home(), "Library", "Logs", "CoreSimulator", deviceId, "system.log");
173-
this.deviceLogChildProcess = childProcess.spawn("tail", ['-f', '-n', '1', logFilePath]);
173+
this.deviceLogChildProcess = child_process.spawn("tail", ['-f', '-n', '1', logFilePath]);
174174
fulfillSafe();
175175
}
176176

0 commit comments

Comments
 (0)