Skip to content

Commit 98efade

Browse files
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
1 parent ca81030 commit 98efade

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ For more information, visit the
2626

2727
## Installation
2828

29-
The Firebase Admin Go SDK can be installed using the `go install` utility:
29+
The Firebase Admin Go SDK can be installed using the `go get` utility:
3030

3131
```
3232
# Install the latest version:
33-
go install firebase.google.com/go/v4@latest
33+
go get firebase.google.com/go/v4@latest
3434
3535
# Or install a specific version:
36-
go install firebase.google.com/go/[email protected]
36+
go get firebase.google.com/go/[email protected]
3737
```
3838

3939
## Contributing

0 commit comments

Comments
 (0)