Skip to content

Commit 374a34c

Browse files
authored
Change order PATH folders (#1290)
1 parent f1106b9 commit 374a34c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.buildkite/scripts/install_deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source .buildkite/scripts/tooling.sh
66

77
add_bin_path(){
88
mkdir -p ${WORKSPACE}/bin
9-
export PATH="${WORKSPACE}/bin:${PATH}"
9+
export PATH="${PATH}:${WORKSPACE}/bin"
1010
}
1111

1212
with_kubernetes() {
@@ -30,7 +30,7 @@ with_go() {
3030
eval "$(gvm $(cat .go-version))"
3131
go version
3232
which go
33-
export PATH="$(go env GOPATH)/bin:${PATH}"
33+
export PATH="${PATH}:$(go env GOPATH)/bin"
3434
}
3535

3636
with_docker_compose() {

0 commit comments

Comments
 (0)