Skip to content

Commit

Permalink
Increase timeout for qmlimportscanner (#627)
Browse files Browse the repository at this point in the history
Closes #626

Thanks @AlFoX
  • Loading branch information
probonopd authored Dec 10, 2024
1 parent b00a83d commit 0448055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/linuxdeployqt/shared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@ bool deployQmlImports(const QString &appDirPath, DeploymentInfo deploymentInfo,
LogError() << "Could not start qmlimportscanner. Process error is" << qmlImportScanner.errorString();
return false;
}
qmlImportScanner.waitForFinished();
qmlImportScanner.waitForFinished(60000); // https://github.com/probonopd/linuxdeployqt/issues/626

// log qmlimportscanner errors
qmlImportScanner.setReadChannel(QProcess::StandardError);
Expand Down

0 comments on commit 0448055

Please sign in to comment.