From 59611369a45acc63b0897e5108088f4e4b920b8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20G=2E=20MARAND?= Date: Sun, 20 Mar 2022 10:47:06 +0100 Subject: [PATCH] doc: update installation in getting-started (#2414) since Go 1.18 `go get` is no longer the way to download a command for any supported version: updated to use go install instead. --- doc/md/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/md/getting-started.md b/doc/md/getting-started.md index 2318423891..375ae57335 100755 --- a/doc/md/getting-started.md +++ b/doc/md/getting-started.md @@ -29,7 +29,7 @@ go mod init ## Installation ```console -go get -d entgo.io/ent/cmd/ent +go install entgo.io/ent/cmd/ent@latest ``` After installing `ent` codegen tool, you should have it in your `PATH`.