We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45a82a1 commit f189ffbCopy full SHA for f189ffb
build.psm1
@@ -563,6 +563,13 @@ function Get-DotnetExe
563
$script:DotnetExe = $dotnetHuntPath
564
return $dotnetHuntPath
565
}
566
+
567
+ $dotnetHuntPath = "/usr/share/dotnet/dotnet"
568
+ Write-Verbose -Verbose "checking non-Windows $dotnetHuntPath"
569
+ if ( test-path $dotnetHuntPath ) {
570
+ $script:DotnetExe = $dotnetHuntPath
571
+ return $dotnetHuntPath
572
+ }
573
574
575
Write-Warning "Could not find dotnet executable"
0 commit comments