Skip to content

Commit

Permalink
Change order PATH folders (#1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrodm authored Jun 1, 2023
1 parent f1106b9 commit 374a34c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .buildkite/scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ source .buildkite/scripts/tooling.sh

add_bin_path(){
mkdir -p ${WORKSPACE}/bin
export PATH="${WORKSPACE}/bin:${PATH}"
export PATH="${PATH}:${WORKSPACE}/bin"
}

with_kubernetes() {
Expand All @@ -30,7 +30,7 @@ with_go() {
eval "$(gvm $(cat .go-version))"
go version
which go
export PATH="$(go env GOPATH)/bin:${PATH}"
export PATH="${PATH}:$(go env GOPATH)/bin"
}

with_docker_compose() {
Expand Down

0 comments on commit 374a34c

Please sign in to comment.