Skip to content

Commit

Permalink
Schema: update readme for how to validate manually
Browse files Browse the repository at this point in the history
The latest go is using gomod, but the repo has no go.mod,
adding GO111MODULE=off to disable gomod and build it locally.

Signed-off-by: bin liu <liubin0329@gmail.com>
  • Loading branch information
liubin committed Mar 10, 2022
1 parent 7ceeb8a commit 711f50a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ To build it:

```bash
export GOPATH=`mktemp -d`
go get -d ./...
go build ./validate.go
GO111MODULE=off go get -d ./...
GO111MODULE=off go build ./validate.go
rm -rf $GOPATH
```

Expand Down

0 comments on commit 711f50a

Please sign in to comment.