Skip to content

Commit

Permalink
fix PATH for odo binary
Browse files Browse the repository at this point in the history
Signed-off-by: anandrkskd <[email protected]>
  • Loading branch information
anandrkskd committed Apr 28, 2022
1 parent 58a0481 commit f9acb77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ibm/pipelines/windows-test-script.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function Run-Test {
$PATH = [Environment]::GetEnvironmentVariable("PATH")
$GOBIN="$(Get-Location)\bin"
[Environment]::SetEnvironmentVariable("GOBIN", "$GOBIN")
[Environment]::SetEnvironmentVariable("PATH", "$PATH;$GOBIN")
[Environment]::SetEnvironmentVariable("PATH", "$GOBIN;$PATH")

# Set kubeconfig to current dir. This ensures no clashes with other test runs
[Environment]::SetEnvironmentVariable("KUBECONFIG","$(Get-Location)\config")
Expand Down

0 comments on commit f9acb77

Please sign in to comment.