mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-08-03 14:42:47 +00:00
Remove vendor/bin from PATH in script (#335)
We should no longer be building anything into vendor/bin in the scripts, so adding it to the path can lead to all sorts of confusion if old binaries are there.
This commit is contained in:
parent
8fff0e887c
commit
ff8b229192
3 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
|||
set -eu
|
||||
|
||||
export GOPATH="$(pwd):$(pwd)/vendor"
|
||||
export PATH="$PATH:$(pwd)/vendor/bin:$(pwd)/bin"
|
||||
export PATH="$PATH:$(pwd)/bin"
|
||||
|
||||
echo "Checking that it builds"
|
||||
gb build
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue