jetbrains.rider: symlink dotnet-sdk again

`lib/ReSharperHost/linux-*/dotnet` does not exist, so that pattern
expands to nothing, and the ln command became just
`ln -s ${dotnet-sdk_7}`.
This commit is contained in:
Raphael Robatsch 2023-10-14 17:38:57 +02:00
parent d0f0927e59
commit 812e28f491

View File

@ -289,7 +289,10 @@ let
lib/ReSharperHost/linux-*/ \
plugins/dotCommon/DotFiles/linux-*/ \
plugins/dotTrace/DotFiles/linux-*/
ln -s ${dotnet-sdk_7} lib/ReSharperHost/linux-*/dotnet
for dir in lib/ReSharperHost/linux-*; do
ln -s ${dotnet-sdk_7} $dir/dotnet
done
)
'';
});