mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-04 12:55:37 -04:00
Make sure chrootCall with args list actually passes the args as list.
This commit is contained in:
parent
122a6036d5
commit
e7e57689d8
3 changed files with 21 additions and 4 deletions
|
@ -66,7 +66,8 @@ chroot_call( const boost::python::list& args,
|
|||
list.append( QString::fromStdString(
|
||||
boost::python::extract< std::string >( args[ i ] ) ) );
|
||||
}
|
||||
return CalamaresUtils::chrootCall( list.join( ' ' ),
|
||||
|
||||
return CalamaresUtils::chrootCall( list,
|
||||
QString::fromStdString( stdin ),
|
||||
timeout );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue