mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 09:25:36 -04:00
By default, chrootCall should never time out.
This commit is contained in:
parent
45ac91c784
commit
c64e229142
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ int chrootCall( const QStringList& args,
|
||||||
process.closeWriteChannel();
|
process.closeWriteChannel();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !process.waitForFinished( timeoutSec ? ( timeoutSec * 1000 ) : 30000 ) )
|
if ( !process.waitForFinished( timeoutSec ? ( timeoutSec * 1000 ) : -1 ) )
|
||||||
{
|
{
|
||||||
cLog() << "Timed out. output so far:";
|
cLog() << "Timed out. output so far:";
|
||||||
cLog() << process.readAllStandardOutput();
|
cLog() << process.readAllStandardOutput();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue