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
This commit is contained in:
klugier 2017-12-24 13:50:34 +00:00
parent 6da87eb305
commit 67ccfca432

View file

@ -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;
}
}