From 926968d72f8e37cc85cbe147e912351d7ed0379b Mon Sep 17 00:00:00 2001 From: Ashish Bansal <49029528+ashishsecdev@users.noreply.github.com> Date: Mon, 27 Dec 2021 01:01:17 +0530 Subject: [PATCH] Update installation method of gf using GO. Installing executables with 'go get' in module mode is deprecated, so we need to use 'go install' instead of 'go get'. So, updated the installation method accordingly in README.mkd document. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d35cc9d..7a9d3b0 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ In order to utilize a different engine, add `engine: ` to the releva If you've got Go installed and configured you can install `gf` with: ``` -▶ go get -u github.com/tomnomnom/gf +▶ go install github.com/tomnomnom/gf@latest ``` If you've installed using `go get`, you can enable auto-completion to your `.bashrc` like this: