macdeployqt: Use static QFile::exists()
This commit is contained in:
2
3rdparty/macdeployqt/main.cpp
vendored
2
3rdparty/macdeployqt/main.cpp
vendored
@@ -87,7 +87,7 @@ int main(int argc, char **argv)
|
||||
|
||||
appBundlePath = QDir::cleanPath(appBundlePath);
|
||||
|
||||
if (QDir().exists(appBundlePath) == false) {
|
||||
if (!QDir(appBundlePath).exists()) {
|
||||
qDebug() << "Error: Could not find app bundle" << appBundlePath;
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user