mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 17:59:33 +02:00
Do not need -a
when using open with full path to app
This commit is contained in:
parent
1705b394a9
commit
675334a105
1 changed files with 2 additions and 2 deletions
|
@ -365,7 +365,7 @@ void TestRunner::startLocalServerProcesses() {
|
||||||
system(commandLine.toStdString().c_str());
|
system(commandLine.toStdString().c_str());
|
||||||
|
|
||||||
#elif defined Q_OS_MAC
|
#elif defined Q_OS_MAC
|
||||||
commandLine = "open -a \"" +_installationFolder + "/Sandbox.app\"";
|
commandLine = "open \"" +_installationFolder + "/Sandbox.app\"";
|
||||||
system(commandLine.toStdString().c_str());
|
system(commandLine.toStdString().c_str());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -395,7 +395,7 @@ void TestRunner::runInterfaceWithTestScript() {
|
||||||
QString commandLine = exeFile + " --url " + url + " --no-updater" + " --testScript " + testScript +
|
QString commandLine = exeFile + " --url " + url + " --no-updater" + " --testScript " + testScript +
|
||||||
" quitWhenFinished --testResultsLocation " + _snapshotFolder;
|
" quitWhenFinished --testResultsLocation " + _snapshotFolder;
|
||||||
#elif defined Q_OS_MAC
|
#elif defined Q_OS_MAC
|
||||||
QString commandLine = "open -a \"" +_installationFolder + "/interface.app\"" + " --args --url " + url + " --no-updater" + " --testScript " + testScript +
|
QString commandLine = "open \"" +_installationFolder + "/interface.app\"" + " --args --url " + url + " --no-updater" + " --testScript " + testScript +
|
||||||
" quitWhenFinished --testResultsLocation " + _snapshotFolder;
|
" quitWhenFinished --testResultsLocation " + _snapshotFolder;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue