aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/exeengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/engine/exeengine.cpp')
-rw-r--r--src/burn/engine/exeengine.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/burn/engine/exeengine.cpp b/src/burn/engine/exeengine.cpp
index c0bab254..85168943 100644
--- a/src/burn/engine/exeengine.cpp
+++ b/src/burn/engine/exeengine.cpp
@@ -624,6 +624,12 @@ extern "C" HRESULT ExeEngineExecutePackage(
624 ExitOnFailure(hr, "Failed to append %ls", BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF); 624 ExitOnFailure(hr, "Failed to append %ls", BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF);
625 } 625 }
626 626
627 // For bundles, append logging to command line if it doesn't contain '-log'
628 if (pPackage->Exe.fBundle || BURN_EXE_PROTOCOL_TYPE_BURN == pPackage->Exe.protocol)
629 {
630 CoreAppendLogToCommandLine(&sczBaseCommand, &sczCommandObfuscated, fRollback, pVariables, pPackage);
631 }
632
627 // build user args 633 // build user args
628 if (sczUnformattedUserArgs && *sczUnformattedUserArgs) 634 if (sczUnformattedUserArgs && *sczUnformattedUserArgs)
629 { 635 {