diff options
author | Josh Spicer <joshspicer@github.com> | 2022-11-18 03:25:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-18 03:25:06 +0300 |
commit | 18db2f09c7052a06625b043209a8d8a8cae154a4 (patch) | |
tree | 3267b0202a1023a08d956fc119908d886c92639c /test | |
parent | 883c99bc1ef06dac1084f8715a1464a12a526628 (diff) |
attempt to debug why this is not working in Action
Diffstat (limited to 'test')
-rw-r--r-- | test/dotnet/install_non_root_remoteUser.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/dotnet/install_non_root_remoteUser.sh b/test/dotnet/install_non_root_remoteUser.sh index e9680cb..db67e03 100644 --- a/test/dotnet/install_non_root_remoteUser.sh +++ b/test/dotnet/install_non_root_remoteUser.sh @@ -7,6 +7,18 @@ source dev-container-features-test-lib check "ensure i am user codespace" bash -c "whoami | grep 'codespace'" +echo "Echoing contents of '/home/codespace/' ...." +ls -la /home/codespace/ + +echo "Echoing contents of '/home/codespace/.dotnet' ...." +ls -la /home/codespace/.dotnet/ + +check "symlinked '/home/codespace/.dotnet' folder has the correct permissions" bash -c "ls -la /home/codespace | grep -E 'lrwxrwxrwx 1 codespace codespace (.*) .dotnet -> /usr/local/dotnet/current'" + + + +check "A file following the symlink has the correct permissions" bash -c "" + ./install_dotnet_7_jammy.sh # Report result |