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