From: Marie Píchová <11718369+ManickaP@users.noreply.github.com> Date: Fri, 28 Aug 2020 11:56:31 +0000 (+0200) Subject: Fixes Windows docker debug prints. (#41443) X-Git-Tag: submit/tizen/20210909.063632~5723 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ed1be135e6be1857f4c660f81c06c7c573935ba;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fixes Windows docker debug prints. (#41443) --- 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 . .