From a3cca853a00e9b3e255d0161f670fb1e1794a76f Mon Sep 17 00:00:00 2001 From: Andrii Buriachevskyi Date: Mon, 29 Jan 2024 07:46:47 +0100 Subject: [PATCH] docs: include version in CLI package installation (#802) go install github.com/hibiken/asynq/tools/asynq@latest --- README.md | 2 +- tools/asynq/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b20d6b..40f89f0 100644 --- a/README.md +++ b/README.md @@ -295,7 +295,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 install github.com/hibiken/asynq/tools/asynq +go install github.com/hibiken/asynq/tools/asynq@latest ``` Here's an example of running the `asynq dash` command: diff --git a/tools/asynq/README.md b/tools/asynq/README.md index 8c6400b..d1960d2 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 install github.com/hibiken/asynq/tools/asynq + go install github.com/hibiken/asynq/tools/asynq@latest This will create the asynq executable under your `$GOPATH/bin` directory.