From 88c75fb5dc70fe3ab0a1aadbc241ea6df4bac177 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 6 Apr 2020 11:08:16 +0200 Subject: [PATCH] [libcalamares] Simplify program-arguments creation --- src/libcalamares/utils/CalamaresUtilsSystem.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/libcalamares/utils/CalamaresUtilsSystem.cpp b/src/libcalamares/utils/CalamaresUtilsSystem.cpp index c464e93f6..9e3cad4f9 100644 --- a/src/libcalamares/utils/CalamaresUtilsSystem.cpp +++ b/src/libcalamares/utils/CalamaresUtilsSystem.cpp @@ -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 );