Browse Source

Merge pull request #74 from LibrePCB/fix_missing_qtconf

Fix failure when creating qt.conf
master
probonopd 8 years ago
committed by GitHub
parent
commit
ea042a7135
  1. 2
      shared/shared.cpp

2
shared/shared.cpp

@ -985,7 +985,7 @@ void createQtConf(const QString &appDirPath)
"Qml2Imports = qml\n"; "Qml2Imports = qml\n";
QString filePath = appDirPath + "/"; // Is picked up when placed next to the main executable 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); QDir().mkpath(filePath);

Loading…
Cancel
Save