diff options
author | JP Ungaretti <git@jungaretti.com> | 2023-02-28 04:07:17 +0300 |
---|---|---|
committer | JP Ungaretti <git@jungaretti.com> | 2023-02-28 04:07:17 +0300 |
commit | 31b98d4ddc4f023667f90799ea98bf87c79a7f39 (patch) | |
tree | 6c615841c4174fa7c4db05c9cfb6283f2c36e859 /test/dotnet/install_wo_apt.sh | |
parent | d664137814a5f59a954df2b7a5fda665b4d50e97 (diff) |
Remove apt test
Diffstat (limited to 'test/dotnet/install_wo_apt.sh')
-rw-r--r-- | test/dotnet/install_wo_apt.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/dotnet/install_wo_apt.sh b/test/dotnet/install_wo_apt.sh deleted file mode 100644 index a1745c5..0000000 --- a/test/dotnet/install_wo_apt.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/local/dotnet | 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 |