mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 12:08:54 +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 installerFullPath = _workingFolder + "/" + _installerFilename;
|
||||||
|
|
||||||
QString commandLine =
|
QString commandLine =
|
||||||
QDir::toNativeSeparators(installerFullPath) + " /S /D=" + QDir::toNativeSeparators(_installationFolder);
|
"\"" + QDir::toNativeSeparators(installerFullPath) + "\"" + " /S /D=" + QDir::toNativeSeparators(_installationFolder);
|
||||||
|
|
||||||
installerWorker->setCommandLine(commandLine);
|
installerWorker->setCommandLine(commandLine);
|
||||||
emit startInstaller();
|
emit startInstaller();
|
||||||
|
|
Loading…
Reference in a new issue