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
getOutputChannelLogger().showWarningMessage(localize('ssh.continuing.command.canceled','Task \'{0}\' is canceled, but the underlying command may not be terminated. Please check manually.',command));
301
+
constwarningMessage: string=localize('ssh.continuing.command.canceled','Task \'{0}\' is canceled, but the underlying command may not be terminated. Please check manually.',command);
302
+
getSshChannel().appendLine(warningMessage);
303
+
vscode.window.showWarningMessage(warningMessage);
300
304
}
301
305
returnreject(newCanceledError());
302
306
}
@@ -308,7 +312,9 @@ export function runInteractiveSshTerminalCommand(args: ITerminalCommandArgs): Pr
308
312
309
313
constfailed=(error?: any)=>{
310
314
clean();
311
-
getOutputChannelLogger().showErrorMessage(localize('ssh.process.failed','"{0}" process failed: {1}',nickname,error));
315
+
consterrorMessage: string=localize('ssh.process.failed','"{0}" process failed: {1}',nickname,error);
316
+
getSshChannel().appendLine(errorMessage);
317
+
vscode.window.showErrorMessage(errorMessage);
312
318
reject(error);
313
319
};
314
320
@@ -341,7 +347,9 @@ export function runInteractiveSshTerminalCommand(args: ITerminalCommandArgs): Pr
0 commit comments