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 <[email protected]>
  • Loading branch information
tobiasgiese committed Jul 18, 2024
1 parent 0e4152f commit d4dc47c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hack/run-e2e-conformance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ if [ $? -ne 0 ]; then
cd -
fi

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

ginkgo -output-dir=$JUNIT_OUTPUT --junit-report "unit_report.xml" -v "$SUITE" -- -report=$JUNIT_OUTPUT

0 comments on commit d4dc47c

Please sign in to comment.