From 367dcd9d1937a7b0e48e059e65a3ad9be01f36de Mon Sep 17 00:00:00 2001 From: Nikhil Vandanapu Date: Sun, 20 Mar 2022 21:44:52 -0700 Subject: [PATCH] Update installation command Beginners might get confused when installing packages and this old command is no more applicable. Changing the installation instruction to use the latest `go install` command is helpful and might potentially save a couple hours of wondering why the `sql-migrate` CLI tool is not being found by the go environment in local. Closes #213. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c954aa89..3a099816 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Using [modl](https://github.com/jmoiron/modl)? Check out [modl-migrate](https:// To install the library and command line program, use the following: ```bash -go get -v github.com/rubenv/sql-migrate/... +go install github.com/rubenv/sql-migrate/...@latest ``` ## Usage