[libcalamares] Simplify program-arguments creation

This commit is contained in:
Adriaan de Groot 2020-04-06 11:08:16 +02:00
parent 21f060c3fd
commit 88c75fb5dc

View file

@ -137,7 +137,7 @@ System::runCommand( System::RunLocation location,
QProcess process;
QString program;
QStringList arguments;
QStringList arguments( args );
if ( location == System::RunLocation::RunInTarget )
{
@ -149,13 +149,11 @@ System::runCommand( System::RunLocation location,
}
program = "chroot";
arguments = QStringList( { destDir } );
arguments << args;
arguments.prepend( destDir );
}
else
{
program = "env";
arguments << args;
}
process.setProgram( program );