From 1ed1be135e6be1857f4c660f81c06c7c573935ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marie=20P=C3=ADchov=C3=A1?= <11718369+ManickaP@users.noreply.github.com> Date: Fri, 28 Aug 2020 13:56:31 +0200 Subject: [PATCH] Fixes Windows docker debug prints. (#41443) --- .../System.Net.Http/tests/StressTests/HttpStress/windows.Dockerfile | 4 ++-- .../tests/StressTests/SslStress/windows.Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libraries/System.Net.Http/tests/StressTests/HttpStress/windows.Dockerfile b/src/libraries/System.Net.Http/tests/StressTests/HttpStress/windows.Dockerfile index aba0c9c..43f1da1 100644 --- a/src/libraries/System.Net.Http/tests/StressTests/HttpStress/windows.Dockerfile +++ b/src/libraries/System.Net.Http/tests/StressTests/HttpStress/windows.Dockerfile @@ -5,8 +5,8 @@ FROM $SDK_BASE_IMAGE # Use powershell as the default shell SHELL ["pwsh", "-Command"] -RUN echo "DOTNET_SDK_VERSION="$DOTNET_SDK_VERSION -RUN echo "DOTNET_VERSION="$DOTNET_VERSION +RUN echo "DOTNET_SDK_VERSION="$env:DOTNET_SDK_VERSION +RUN echo "DOTNET_VERSION="$env:DOTNET_VERSION WORKDIR /app COPY . . diff --git a/src/libraries/System.Net.Security/tests/StressTests/SslStress/windows.Dockerfile b/src/libraries/System.Net.Security/tests/StressTests/SslStress/windows.Dockerfile index ac0fcf9..02e23f5 100644 --- a/src/libraries/System.Net.Security/tests/StressTests/SslStress/windows.Dockerfile +++ b/src/libraries/System.Net.Security/tests/StressTests/SslStress/windows.Dockerfile @@ -5,8 +5,8 @@ FROM $SDK_BASE_IMAGE # Use powershell as the default shell SHELL ["pwsh", "-Command"] -RUN echo "DOTNET_SDK_VERSION="$DOTNET_SDK_VERSION -RUN echo "DOTNET_VERSION="$DOTNET_VERSION +RUN echo "DOTNET_SDK_VERSION="$env:DOTNET_SDK_VERSION +RUN echo "DOTNET_VERSION="$env:DOTNET_VERSION WORKDIR /app COPY . . -- 2.7.4