diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-11-08 23:08:06 +0300 |
---|---|---|
committer | Samruddhi Khandale <skhandale@microsoft.com> | 2022-11-08 23:08:06 +0300 |
commit | 91b8a145251afa580f35feb5f800bd1e4492a2b0 (patch) | |
tree | 05934dd8d88ba80d9e41d7f416606210e9ab5d3c /test/dotnet/install_dotnet_3.sh | |
parent | 3020d6da64798ee994d407ffd3ce3f800f6dff92 (diff) |
Diffstat (limited to 'test/dotnet/install_dotnet_3.sh')
-rw-r--r-- | test/dotnet/install_dotnet_3.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dotnet/install_dotnet_3.sh b/test/dotnet/install_dotnet_3.sh index 0d05215..5450a83 100644 --- a/test/dotnet/install_dotnet_3.sh +++ b/test/dotnet/install_dotnet_3.sh @@ -6,8 +6,8 @@ set -e source dev-container-features-test-lib check "dotnet sdks" dotnet --list-sdks -check "some major version of dotnet 3 is installed" dotnet --list-sdks | grep '3\.[0-9]*\.[0-9]*' -check "dotnet version 3 installed" ls -l /usr/share/dotnet/sdk | grep '3\.[0-9]*\.[0-9]*' +check "some major version of dotnet 3 is installed" bash -c "dotnet --list-sdks | grep '3\.[0-9]*\.[0-9]*'" +check "dotnet version 3 installed" bash -c "ls -l /usr/share/dotnet/sdk | grep '3\.[0-9]*\.[0-9]*'" # Report result reportResults |