From 494e9f87b01c5364030a6fd4d975225ce1d26a14 Mon Sep 17 00:00:00 2001 From: Richard Wiseman Date: Wed, 26 Feb 2025 12:53:59 +0000 Subject: [PATCH] Update README.md `go get github.com/KyleBanks/depth/cmd/depth` did not work for me; `go install github.com/KyleBanks/depth/cmd/depth@latest` did. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 57d0a4a..7beba25 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,12 @@ Download the appropriate binary for your platform from the [Releases](https://gi go get github.com/KyleBanks/depth/cmd/depth ``` +If this does not work, you can use `go install` to install the latest version: + +```sh +go install github.com/KyleBanks/depth/cmd/depth@latest +``` + ## Usage `depth` can be used as a standalone command-line application, or as a package within your own project.