From 67ccfca43277fcc426ffeb4815cf57c15b97952f Mon Sep 17 00:00:00 2001 From: klugier Date: Sun, 24 Dec 2017 13:50:34 +0000 Subject: [PATCH] Ide: TheIDE now prints which key needs to be pressed (enter) to close the termianl window after application execution. Thanks ptkacz for spotting the problem. git-svn-id: svn://ultimatepp.org/upp/trunk@11610 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ide/Core/Host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/ide/Core/Host.cpp b/uppsrc/ide/Core/Host.cpp index b3fc6696c..facbe76ba 100644 --- a/uppsrc/ide/Core/Host.cpp +++ b/uppsrc/ide/Core/Host.cpp @@ -245,7 +245,7 @@ void LocalHost::Launch(const char *_cmdline, bool console) FileStream out(script, FileStream::CREATE, 0777); out << "#!/bin/sh\n" << cmdline << '\n' - << "echo \"<--- Finished, press any key to close the window --->\"\nread dummy\n"; + << "echo \"<--- Finished, press enter to close the window --->\"\nread dummy\n"; cmdline = LinuxHostConsole + " sh " + script; } }