From 2cf2ca309849827a3752cea0fc448d7f16a2a4b4 Mon Sep 17 00:00:00 2001 From: xiechengsheng Date: Thu, 2 Aug 2018 22:55:13 +0800 Subject: [PATCH] update install step in INSTALLATION.md Signed-off-by: xiechengsheng --- INSTALLATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index f103960c0..925866877 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -222,10 +222,10 @@ cd $GOPATH/src/github.com/alibaba/; git clone https://github.com/alibaba/pouch.g cd pouch; git checkout master ``` -Makefile target named `build` will compile the pouch and pouchd binaries in current work directory. Or you can just execute `make install` to build binaries and install them in destination directory (`/usr/local/bin` by default). +Makefile target named `build` will compile the pouch and pouchd binaries into current `bin` directory. You can execute `make build && make install` to build binaries and install them in destination directory (`/usr/local/bin` by default). ``` shell -make install +make build && make install ``` ### Start PouchContainer