From 4bdc24363b56940603634fb361de80e57db1f7fb Mon Sep 17 00:00:00 2001 From: Gideon Wolfe Date: Fri, 3 Jan 2020 13:58:24 -0800 Subject: [PATCH] Update filepath in readme Previously, if you changed into `$GOPATH/src/github.com/mop-tracker/mop/cmd/mop` and run any of the make commands you will get an error like `make: *** No targets specified and no makefile found. Stop.` running `cd ../..` brings you to `$GOPATH/src/github.com/mop-tracker/mop/` where all of the commands will complete. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f66f31..4f5f3dd 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Mop is implemented in Go and compiles down to a single executable file. # Make sure your $GOPATH is set. $ go get github.com/mop-tracker/mop/cmd/mop - $ cd $GOPATH/src/github.com/mop-tracker/mop/cmd/mop + $ cd $GOPATH/src/github.com/mop-tracker/mop $ make # <-- Compile and run mop. $ make build # <-- Build mop in current directory. $ make install # <-- Build mop and install it in $GOPATH/bin.