Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ private static List<ProcessExecutionEnvironmentVariable> CreateEnvironmentVariab
/// <returns>True if the exit code was not 0.</returns>
private bool RunSynchronously(ProcessExecution processExecution)
{
this.processorSettings.DiagnosticsSink?.OnDiagnostics(DiagnosticLevel.Verbose, $"Starting process: {processExecution.CommandLine}");
this.processorSettings.DiagnosticsSink?.OnDiagnostics(DiagnosticLevel.Verbose, $"Starting process: {processExecution.CommandLine}{(processExecution.Input == null ? string.Empty : $"\n--- Input Stream ---\n{processExecution.Input}")}");

processExecution.Start().WaitForExit();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ BeforeAll {
# [CLI ] MSStore install failed. ProductId: 9PCX3HX4HZ0Z HResult: 0x80010002
# So install the DSCv3 package here.
Import-Module Microsoft.WinGet.Client
$installResult = Install-WingetPackage -Id 9PCX3HX4HZ0Z -Source msstore
# We prefer to use preview (9PCX3HX4HZ0Z) to catch issues early, but if it causes blocking use stable (9NVTPZWRC6KQ) until it is resolved.
$installResult = Install-WingetPackage -Id 9NVTPZWRC6KQ -Source msstore
if ($installResult.Status -ne 'Ok')
{
Write-Error "Failed to install DSCv3 package. Status: $($installResult.Status). ExtendedErrorCode: $($installResult.ExtendedErrorCode)." -ErrorAction Stop
Expand Down