diff options
author | JP Ungaretti <git@jungaretti.com> | 2023-03-01 10:39:09 +0300 |
---|---|---|
committer | JP Ungaretti <git@jungaretti.com> | 2023-03-01 10:53:55 +0300 |
commit | a4746b2feb341357a30429294881dfc8fd6707d0 (patch) | |
tree | 7f9a1c5162ebe73a40d0bd6be0ed3e8b87dc3ff1 /test/dotnet/install_dotnet_latest.sh | |
parent | 018003a29157534319297c6d55355e54333637d1 (diff) |
Update version tests
Diffstat (limited to 'test/dotnet/install_dotnet_latest.sh')
-rw-r--r-- | test/dotnet/install_dotnet_latest.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/dotnet/install_dotnet_latest.sh b/test/dotnet/install_dotnet_latest.sh deleted file mode 100644 index 2c015fc..0000000 --- a/test/dotnet/install_dotnet_latest.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -set -e - -# Optional: Import test library -source dev-container-features-test-lib - -check "dotnet sdks" dotnet --list-sdks -check "some major version of dotnet 7 is installed" bash -c "dotnet --list-sdks | grep '7\.[0-9]*\.[0-9]*'" -check "dotnet version 7 installed" bash -c "ls -l /usr/share/dotnet/sdk | grep '7\.[0-9]*\.[0-9]*'" - -# Verify current symlink exists and works -check "current link dotnet" /usr/local/dotnet/current/dotnet --info -check "current link sdk" ls -l /usr/local/dotnet/current/sdk - -# Report result -reportResults |