From 938233b19133b6a2a8f4bb736fea3f9037e88f0a 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 231842389..375ae5733 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`.