From d43eba6f6742d6c40857e53eee62d46a11652e98 Mon Sep 17 00:00:00 2001 From: Francesco Mari Date: Fri, 25 Jul 2025 12:06:01 +0200 Subject: [PATCH] Use `go install` in module-aware mode Since Go 1.16, `go install` can run in module-aware mode, which is activated if the argument is suffixed by an `@` and a version. This PR updates the README by using `go install` in module-aware mode. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index af56311..6b9f030 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,9 @@ This project is wrapping adobe/ims-go. Build the CLI or download a prebuilt [release](https://github.com/adobe/imscli/releases). Example: -``` -git clone https://github.com/adobe/imscli -go install +```sh +go install github.com/adobe/imscli@latest ``` ## Usage