mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:24:07 +02:00
Correction for Linux
This commit is contained in:
parent
470a490494
commit
cd2194ad53
1 changed files with 3 additions and 3 deletions
|
@ -229,11 +229,11 @@ void TestRunner::runInstaller() {
|
|||
|
||||
QString installerFullPath = _workingFolder + "/" + _installerFilename;
|
||||
|
||||
QString commandLine;
|
||||
#ifdef Q_OS_WIN
|
||||
QString commandLine =
|
||||
"\"" + QDir::toNativeSeparators(installerFullPath) + "\"" + " /S /D=" + QDir::toNativeSeparators(_installationFolder);
|
||||
commandLine = "\"" + QDir::toNativeSeparators(installerFullPath) + "\"" + " /S /D=" + QDir::toNativeSeparators(_installationFolder);
|
||||
#elif defined Q_OS_MAC
|
||||
QString commandLine = "yes | " + _workingFolder + "/install_app.sh " + _workingFolder + "/HighFidelity-Beta-latest-dev.dmg";
|
||||
commandLine = "yes | " + _workingFolder + "/install_app.sh " + _workingFolder + "/HighFidelity-Beta-latest-dev.dmg";
|
||||
#endif
|
||||
|
||||
installerWorker->setCommandLine(commandLine);
|
||||
|
|
Loading…
Reference in a new issue