From 612350152aba70d56e2a6fbd179cee749c1deafd Mon Sep 17 00:00:00 2001 From: MendelGusmao Date: Thu, 5 Dec 2019 16:05:33 -0300 Subject: [PATCH 1/2] Explain -profile usage in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f66f31..ee5245b 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ following keyboard commands: esc Quit mop. When prompted please enter comma-delimited list of stock tickers. The -list and other settings are stored in ``.moprc`` file in your ``$HOME`` -directory. +list and other settings are stored in the profile file (default: ``.moprc`` in your ``$HOME`` directory) +You can specify the profile you want to use by passing ``-profile `` to the command-line. ### Contributing ### From 4bdc24363b56940603634fb361de80e57db1f7fb Mon Sep 17 00:00:00 2001 From: Gideon Wolfe Date: Fri, 3 Jan 2020 13:58:24 -0800 Subject: [PATCH 2/2] 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.