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 aa5a368 commit 9f424b2Copy full SHA for 9f424b2
test-scripts/Test-DotnetGlobalTool.ps1
@@ -4,10 +4,10 @@ param(
4
[parameter(Mandatory=$true, Position=2)][string] $repoPath
5
)
6
7
-$result = dotnet tool install GitVersion.Tool --version $version --tool-path /tools --add-source $nugetPath | out-null;
+$result = dotnet tool install GitVersion.Tool --version $version --tool-path $rootPrefix/tools --add-source $nugetPath | out-null;
8
9
if($LASTEXITCODE -eq 0) {
10
- & "/tools/dotnet-gitversion" $repoPath /showvariable FullSemver;
+ & "$rootPrefix/tools/dotnet-gitversion" $repoPath /showvariable FullSemver;
11
} else {
12
Write-Output $result
13
}
0 commit comments