Fixed: Create directory before trying to create a client.cfg
--HG-- branch : develop
This commit is contained in:
parent
acdbbd63b3
commit
9a402ea68c
1 changed files with 3 additions and 0 deletions
|
@ -145,6 +145,9 @@ bool CProfile::createClientConfig() const
|
||||||
QString directory = getDirectory();
|
QString directory = getDirectory();
|
||||||
QString filename = directory + "/client.cfg";
|
QString filename = directory + "/client.cfg";
|
||||||
|
|
||||||
|
// create directory
|
||||||
|
QDir().mkpath(directory);
|
||||||
|
|
||||||
const CServer &s = CConfigFile::getInstance()->getServer(server);
|
const CServer &s = CConfigFile::getInstance()->getServer(server);
|
||||||
|
|
||||||
// create the 2 initial lines of client.cfg
|
// create the 2 initial lines of client.cfg
|
||||||
|
|
Loading…
Reference in a new issue