We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9922855 commit a7895d0Copy full SHA for a7895d0
dev/release/verify-release-candidate.sh
@@ -249,7 +249,7 @@ install_dotnet() {
249
if command -v dotnet; then
250
show_info "Found $(dotnet --version) at $(which dotnet)"
251
252
- if dotnet --version | grep 8\.0 > /dev/null 2>&1; then
+ if dotnet --version | grep --quiet --fixed-string 8.0; then
253
local csharp_bin=$(dirname $(which dotnet))
254
show_info "Found C# at $(which csharp) (.NET $(dotnet --version))"
255
DOTNET_ALREADY_INSTALLED=1
0 commit comments