Fixed: SSL dir not created on Mac #4551
This commit is contained in:
parent
dbc5da7a48
commit
d184be31b5
|
@ -118,7 +118,7 @@ void SslCertificate::generateCertificate()
|
||||||
|
|
||||||
QDir sslDir(sslDirPath);
|
QDir sslDir(sslDirPath);
|
||||||
if (!sslDir.exists()) {
|
if (!sslDir.exists()) {
|
||||||
sslDir.mkdir(".");
|
sslDir.mkpath(".");
|
||||||
}
|
}
|
||||||
|
|
||||||
QString filename = QString("%1%2%3")
|
QString filename = QString("%1%2%3")
|
||||||
|
|
Loading…
Reference in New Issue