Skip to content

Commit

Permalink
Update README.md (#606)
Browse files Browse the repository at this point in the history
`go install` is now used to install executables (https://go.dev/doc/go-get-install-deprecation)

Updating the README to use `go get` instead
  • Loading branch information
lahirumaramba committed Mar 18, 2024
1 parent ca81030 commit 98efade
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
go get firebase.google.com/go/[email protected]
```

## Contributing
Expand Down

0 comments on commit 98efade

Please sign in to comment.