forked from qt-creator/qt-creator
Fix "open terminal with environment" functionality
... for RemoteLinux. We now open a *remote* terminal, as we should. Change-Id: I84f73bbfcb6132717a30f5ef7c8d9d56d854a609 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -99,7 +99,8 @@ QString LinuxDeviceProcess::fullCommandLine(const Runnable &runnable) const
|
||||
if (!envString.isEmpty())
|
||||
fullCommandLine.append(envString);
|
||||
if (!runInTerminal())
|
||||
fullCommandLine.append(" exec ");
|
||||
fullCommandLine.append(" exec");
|
||||
fullCommandLine.append(' ');
|
||||
fullCommandLine.append(quote(runnable.executable));
|
||||
if (!runnable.commandLineArguments.isEmpty()) {
|
||||
fullCommandLine.append(QLatin1Char(' '));
|
||||
|
||||
Reference in New Issue
Block a user