From 5d826897de4df1226113d2fdf0c6afba8cc963b2 Mon Sep 17 00:00:00 2001 From: Robert Lin Date: Tue, 26 Apr 2022 22:49:13 -0700 Subject: [PATCH] doc: replace go get with go install --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 616d2db..d673464 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Instead of publishing results, benchmark output can be used to pass and fail pul using `CHECKS: true`. To get started, set up the checks configuration: ```sh -go get -u go.bobheadxi.dev/gobenchdata +go install go.bobheadxi.dev/gobenchdata@latest gobenchdata checks generate ``` @@ -157,7 +157,7 @@ You can visualize these continuous benchmarks by creating a web app that reads from the JSON benchmarks file, or by using `gobenchdata`. An easy way to get started is: ```sh -go get -u go.bobheadxi.dev/gobenchdata +go install go.bobheadxi.dev/gobenchdata@latest gobenchdata web generate --web.config-only . gobenchdata web serve # opens visualization in browser ``` @@ -216,7 +216,7 @@ gobenchdata web generate ./app is also available as a CLI: ```sh -go get -u go.bobheadxi.dev/gobenchdata +go install go.bobheadxi.dev/gobenchdata@latest gobenchdata help ```