From 8b4698f9e1bca001585460584ab58cc0b7283678 Mon Sep 17 00:00:00 2001 From: Florin Dinu Date: Mon, 11 Oct 2021 17:47:44 +0300 Subject: [PATCH] Updated the install command (#42) * Updated the install command The previous command issued a deprecated error ``` go get: installing executables with 'go get' in module mode is deprecated. Use 'go install pkg@version' instead. For more information, see https://golang.org/doc/go-get-install-deprecation or run 'go help get' or 'go help install'. ``` * Updated install command to latest --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e57fc7..8fd754d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Status: STABLE. The format will only change if bugs are found. Please report any Binaries can be downloaded from [Releases](https://github.com/klauspost/asmfmt/releases). Unpack the file into your executable path. -To install the standalone formatter from source using Go framework: `go get -u github.com/klauspost/asmfmt/cmd/asmfmt`. +To install the standalone formatter from source using Go framework: `go install github.com/klauspost/asmfmt/cmd/asmfmt@latest`. # updates