mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05: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();
|
||||
}
|
||||
|
||||
if ( !process.waitForFinished( timeoutSec ? ( timeoutSec * 1000 ) : 30000 ) )
|
||||
if ( !process.waitForFinished( timeoutSec ? ( timeoutSec * 1000 ) : -1 ) )
|
||||
{
|
||||
cLog() << "Timed out. output so far:";
|
||||
cLog() << process.readAllStandardOutput();
|
||||
|
|
Loading…
Add table
Reference in a new issue