Skip to content

Commit 5b325fe

Browse files
committed
more Go Module notes
1 parent 866d4e5 commit 5b325fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Ok not to use it if your app project is really small and where an extra level of
5757

5858
### `/vendor`
5959

60-
Application dependencies (managed manually or by your favorite dependency management tool like the new built-in [`Go Modules`](https://github.com/golang/go/wiki/Modules) feature).
60+
Application dependencies (managed manually or by your favorite dependency management tool like the new built-in [`Go Modules`](https://github.com/golang/go/wiki/Modules) feature). The `go mod vendor` command will create the `/vendor` directory for you. Note that you might need to add the `-mod=vendor` flag to your `go build` command if you are not using Go 1.14 where it's on by default.
6161

6262
Don't commit your application dependencies if you are building a library.
6363

0 commit comments

Comments
 (0)