Fix install command (#289)

pull/290/head
Dongri Jin 2021-11-25 00:00:49 +09:00 committed by GitHub
parent 4148551f3e
commit 7bc1756c61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ Goose supports [embedding SQL migrations](#embedded-sql-migrations), which means
# Install
$ go get -u github.com/pressly/goose/v3/cmd/goose
$ go install github.com/pressly/goose/v3/cmd/goose@latest
This will install the `goose` binary to your `$GOPATH/bin` directory.

View File

@ -3,7 +3,7 @@
See [this example](../go-migrations) for Go migrations.
```bash
$ go get -u github.com/pressly/goose/cmd/goose
$ go install github.com/pressly/goose/v3/cmd/goose@latest
```
```bash