Skip to content

Commit 0448055

Browse files
authored
Increase timeout for qmlimportscanner (#627)
Closes #626 Thanks @AlFoX
1 parent b00a83d commit 0448055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/linuxdeployqt/shared.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1843,7 +1843,7 @@ bool deployQmlImports(const QString &appDirPath, DeploymentInfo deploymentInfo,
18431843
LogError() << "Could not start qmlimportscanner. Process error is" << qmlImportScanner.errorString();
18441844
return false;
18451845
}
1846-
qmlImportScanner.waitForFinished();
1846+
qmlImportScanner.waitForFinished(60000); // https://github.com/probonopd/linuxdeployqt/issues/626
18471847

18481848
// log qmlimportscanner errors
18491849
qmlImportScanner.setReadChannel(QProcess::StandardError);

0 commit comments

Comments
 (0)