From dadbafc45e63f739b8886cea9134285cadfc9462 Mon Sep 17 00:00:00 2001 From: fatme Date: Fri, 12 Oct 2018 16:03:01 +0300 Subject: [PATCH] fix: don't detach native debugger on debug command --- lib/services/ios-debug-service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/services/ios-debug-service.ts b/lib/services/ios-debug-service.ts index 3af90324c7..94648ecc54 100644 --- a/lib/services/ios-debug-service.ts +++ b/lib/services/ios-debug-service.ts @@ -143,7 +143,6 @@ export class IOSDebugService extends DebugServiceBase implements IPlatformDebugS } this._lldbProcess.stderr.pipe(process.stderr); this._lldbProcess.stdin.write("process continue\n"); - this._lldbProcess.stdin.write("detach\n"); return this.wireDebuggerClient(debugData, debugOptions); }