|
|
|
@ -1,7 +1,8 @@
|
|
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* SPDX-FileCopyrightText: 2014 Teo Mrnjavac <teo@kde.org>
|
|
|
|
|
* SPDX-FileCopyrightText: 2017-2020 Adriaan de Groot <groot@kde.org>
|
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
*
|
|
|
|
|
* Calamares is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
@ -16,9 +17,6 @@
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
* License-Filename: LICENSE
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "CalamaresUtilsSystem.h"
|
|
|
|
@ -212,11 +210,11 @@ System::runCommand( System::RunLocation location,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto r = process.exitCode();
|
|
|
|
|
cDebug() << "Finished. Exit code:" << r;
|
|
|
|
|
cDebug() << Logger::SubEntry << "Finished. Exit code:" << r;
|
|
|
|
|
bool showDebug = ( !Calamares::Settings::instance() ) || ( Calamares::Settings::instance()->debugMode() );
|
|
|
|
|
if ( ( r != 0 ) || showDebug )
|
|
|
|
|
{
|
|
|
|
|
cDebug() << "Target cmd:" << RedactedList( args ) << "output:\n" << Logger::NoQuote{} << output;
|
|
|
|
|
cDebug() << Logger::SubEntry << "Target cmd:" << RedactedList( args ) << "output:\n" << Logger::NoQuote{} << output;
|
|
|
|
|
}
|
|
|
|
|
return ProcessResult( r, output );
|
|
|
|
|
}
|
|
|
|
|