From 85a77d2311e70883c4609c13a03bd7895ca4c843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20G=2E=20MARAND?= Date: Sat, 19 Mar 2022 16:47:14 +0100 Subject: [PATCH] Update getting-started.md 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`.