Terminal: Remove unnecessary echo

Fixes: QTCREATORBUG-29354
Change-Id: Ie6ddd127fecef3f48e56ca17335b21afaab31365
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Marcus Tillmanns
2023-07-04 10:31:33 +02:00
parent 3f912c01fb
commit f23103467a

View File

@@ -24,9 +24,8 @@ ProcessStubCreator::ProcessStubCreator(TerminalInterface *interface)
static const QLatin1String TerminalAppScript{R"(
tell application "Terminal"
activate
set newTab to do script "echo Preparing terminal..."
set newTab to do script "%1 && exit"
set win to (the id of window 1 where its tab 1 = newTab) as text
do script "%1 && exit" in newTab
repeat until ((count of processes of newTab) = 0)
delay 0.1
end repeat