From 6ad713830fbc267101c2a120d3fd3f4810ee2d2b Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Mon, 29 Aug 2022 12:07:36 -0600 Subject: [PATCH] drop -mod=mod instructions; fixes #1026 --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index bde6b5d58..3a0d7f372 100644 --- a/docs/index.md +++ b/docs/index.md @@ -38,7 +38,7 @@ In this section we cover installing Ginkgo, Gomega, and the `ginkgo` CLI. We bo Ginkgo uses [go modules](https://go.dev/blog/using-go-modules). To add Ginkgo to your project, assuming you have a `go.mod` file setup, just `go install` it: ```bash -go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo +go install github.com/onsi/ginkgo/v2/ginkgo go get github.com/onsi/gomega/... ```