From 5187844ca5e715eb5c7ba0f6451a825f31c2c02e Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Fri, 6 May 2022 16:55:54 -0700 Subject: [PATCH] Update CLI install command in README --- README.md | 2 +- tools/asynq/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6ec29a..31c6f8b 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ Asynq ships with a command line tool to inspect the state of queues and tasks. To install the CLI tool, run the following command: ```sh -go get -u github.com/hibiken/asynq/tools/asynq +go install github.com/hibiken/asynq/tools/asynq ``` Here's an example of running the `asynq stats` command: diff --git a/tools/asynq/README.md b/tools/asynq/README.md index 5384f5c..28d3fc2 100644 --- a/tools/asynq/README.md +++ b/tools/asynq/README.md @@ -12,7 +12,7 @@ Asynq CLI is a command line tool to monitor the queues and tasks managed by `asy In order to use the tool, compile it using the following command: - go get github.com/hibiken/asynq/tools/asynq + go install github.com/hibiken/asynq/tools/asynq This will create the asynq executable under your `$GOPATH/bin` directory.