Skip to content

Commit 9f424b2

Browse files
committed
testing the linux native binaries in docker containers
1 parent aa5a368 commit 9f424b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-scripts/Test-DotnetGlobalTool.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ param(
44
[parameter(Mandatory=$true, Position=2)][string] $repoPath
55
)
66

7-
$result = dotnet tool install GitVersion.Tool --version $version --tool-path /tools --add-source $nugetPath | out-null;
7+
$result = dotnet tool install GitVersion.Tool --version $version --tool-path $rootPrefix/tools --add-source $nugetPath | out-null;
88

99
if($LASTEXITCODE -eq 0) {
10-
& "/tools/dotnet-gitversion" $repoPath /showvariable FullSemver;
10+
& "$rootPrefix/tools/dotnet-gitversion" $repoPath /showvariable FullSemver;
1111
} else {
1212
Write-Output $result
1313
}

0 commit comments

Comments
 (0)