Merge pull request #64 from moorereason/iss62-goget
fix toml-test build script for Go 1.17
This commit is contained in:
commit
353c68c3df
1 changed files with 3 additions and 3 deletions
|
@ -2,8 +2,8 @@
|
|||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
mkdir -p $DIR/goworkspace
|
||||
export GOPATH=$DIR/goworkspace
|
||||
go get github.com/BurntSushi/toml-test # install test suite
|
||||
go get github.com/BurntSushi/toml/cmd/toml-test-decoder # e.g., install my parser
|
||||
export GOPATH=$DIR/goworkspace
|
||||
go get github.com/BurntSushi/toml-test@latest # install test suite
|
||||
go install github.com/BurntSushi/toml/cmd/toml-test-decoder@latest # e.g., install my parser
|
||||
cp $GOPATH/bin/* .
|
||||
|
||||
|
|
Loading…
Reference in a new issue