From 98efade4a1fab0f00afd5295f26421073c3a697a Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Mon, 18 Mar 2024 17:27:40 -0400 Subject: [PATCH] Update README.md (#606) `go install` is now used to install executables (https://go.dev/doc/go-get-install-deprecation) Updating the README to use `go get` instead --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1fd81858..cc0439e1 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,14 @@ For more information, visit the ## Installation -The Firebase Admin Go SDK can be installed using the `go install` utility: +The Firebase Admin Go SDK can be installed using the `go get` utility: ``` # Install the latest version: -go install firebase.google.com/go/v4@latest +go get firebase.google.com/go/v4@latest # Or install a specific version: -go install firebase.google.com/go/v4@4.x.x +go get firebase.google.com/go/v4@4.x.x ``` ## Contributing