Skip to content

Commit

Permalink
[README] go get -> go install
Browse files Browse the repository at this point in the history
From https://go.dev/doc/go-get-install-deprecation :
> Starting in Go 1.17, installing executables with go get is deprecated. go install may be used instead.

We use the version suffix `@latest` so that `go install` will ignore a `go.mod` in the cwd.
  • Loading branch information
barrettj12 authored and kisielk committed Nov 15, 2022
1 parent 573dc89 commit 2d08317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ godepgraph is a program for generating a dependency graph of Go packages.

## Install

go get github.com/kisielk/godepgraph
go install github.com/kisielk/godepgraph@latest

## Use

Expand Down

0 comments on commit 2d08317

Please sign in to comment.