Merge pull request #74 from LibrePCB/fix_missing_qtconf

Fix failure when creating qt.conf
This commit is contained in:
probonopd
2017-02-16 20:19:59 +01:00
committed by GitHub
+1 -1
View File
@@ -985,7 +985,7 @@ void createQtConf(const QString &appDirPath)
"Qml2Imports = qml\n";
QString filePath = appDirPath + "/"; // Is picked up when placed next to the main executable
QString fileName = appBinaryPath + "/../qt.conf";
QString fileName = QDir::cleanPath(appBinaryPath + "/../qt.conf");
QDir().mkpath(filePath);