diff options
author | Eike Ziller <eike.ziller@qt.io> | 2018-09-05 17:43:22 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2018-09-10 10:04:33 +0000 |
commit | 53f0e6c0eee68b4c971a01e15cf1277d252edd64 (patch) | |
tree | 5299afb5232bfb5ed3fa17cc1b449aaaf64b26ed /src/libs/utils/consoleprocess_unix.cpp | |
parent | 3ffe3588d703c085bbb06429dee9853f4be2eca9 (diff) | |
download | qt-creator-53f0e6c0eee68b4c971a01e15cf1277d252edd64.tar.gz |
macOS: Replace openTerminal.command by python script
This script will become even less trivial in the future, so use an
actually usable programming language for it.
Change-Id: I4fa1c8d327f97585bf8dde0ffaefc5fac7c1ca18
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/libs/utils/consoleprocess_unix.cpp')
-rw-r--r-- | src/libs/utils/consoleprocess_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/consoleprocess_unix.cpp b/src/libs/utils/consoleprocess_unix.cpp index df017a571c..92b69952f6 100644 --- a/src/libs/utils/consoleprocess_unix.cpp +++ b/src/libs/utils/consoleprocess_unix.cpp @@ -351,7 +351,7 @@ TerminalCommand ConsoleProcess::defaultTerminalEmulator() defaultTerm = []() -> TerminalCommand { if (HostOsInfo::isMacHost()) { const QString termCmd = QCoreApplication::applicationDirPath() - + "/../Resources/scripts/openTerminal.command"; + + "/../Resources/scripts/openTerminal.py"; if (QFileInfo::exists(termCmd)) return {termCmd, "", ""}; return {"/usr/X11/bin/xterm", "", "-e"}; |