mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Deal with blanks in path.
This commit is contained in:
parent
6e538319b2
commit
574be7614c
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ void TestRunner::runInstaller() {
|
|||
QString installerFullPath = _workingFolder + "/" + _installerFilename;
|
||||
|
||||
QString commandLine =
|
||||
QDir::toNativeSeparators(installerFullPath) + " /S /D=" + QDir::toNativeSeparators(_installationFolder);
|
||||
"\"" + QDir::toNativeSeparators(installerFullPath) + "\"" + " /S /D=" + QDir::toNativeSeparators(_installationFolder);
|
||||
|
||||
installerWorker->setCommandLine(commandLine);
|
||||
emit startInstaller();
|
||||
|
|
Loading…
Reference in a new issue