You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cp.spawn('osascript',['-e',`tell application "Terminal" to do script "${cmdLine.replace(/"/g,'\\"')}"`],{ cwd, env,detached: true,stdio: 'ignore'}).unref();
120
+
cp.spawn('osascript',['-e',`tell application "Terminal" to do script "${this.escapeQuotes(cmdLine)}"`],{ cwd, env,detached: true,stdio: 'ignore'}).unref();
121
121
}elseif(platform==='linux'&&sessionIsWsl()){
122
122
cp.spawn('/mnt/c/Windows/System32/cmd.exe',['/c','start','bash','-c',`${cmdLine};read -p 'Press enter to continue...'`],{ env,detached: true,stdio: 'ignore'}).unref();
123
123
}else{// platform === 'linux'
@@ -186,8 +186,12 @@ export class RunWithoutDebuggingAdapter implements vscode.DebugAdapter {
0 commit comments