We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5edc85d commit 872ef89Copy full SHA for 872ef89
test/formatters/installers/csharpier.bash
@@ -2,4 +2,6 @@ apt-get install -y dotnet-sdk-8.0
2
3
dotnet tool install csharpier -g
4
5
-ln -s "$HOME/.dotnet/tools/dotnet-csharpier" /usr/local/bin/
+ls "${HOME}/.dotnet/tools" | while read -r tool; do
6
+ ln -s "${HOME}/.dotnet/tools/${tool}" /usr/local/bin/
7
+done
0 commit comments