Skip to content

Commit

Permalink
chore: fix GOPATH for e2e-conformance tests
Browse files Browse the repository at this point in the history
go: GOPATH entry cannot start with shell metacharacter '~': "~/go"

Signed-off-by: Tobias Giese <tgiese@nvidia.com>
  • Loading branch information
tobiasgiese committed Jul 18, 2024
1 parent 0e4152f commit d045930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/run-e2e-conformance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ $? -ne 0 ]; then
cd -
fi

GOPATH="${GOPATH:-~/go}"
GOPATH="${GOPATH:-$HOME/go}"
JUNIT_OUTPUT="${JUNIT_OUTPUT:-/tmp/artifacts}"
export PATH=$PATH:$GOPATH/bin

Expand Down

0 comments on commit d045930

Please sign in to comment.