-
Notifications
You must be signed in to change notification settings - Fork 948
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: update install step in INSTALLATION.md #2045
Conversation
INSTALLATION.md
Outdated
@@ -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 in current work directory. You can execute `make build && make install` to build binaries and install them in destination directory (`/usr/local/bin` by default). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
build into bin
directory actually 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the make build
would generate bin file into bin
directory and make install
would copy(or link?) this bin file to /usr/local/bin
directory, is this pr anything wrong?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should update here the pouch and pouchd binaries in current work directory
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, Got it. Thanks.
This change is done by @fuweid |
Signed-off-by: xiechengsheng <XIE1995@whut.edu.cn>
Codecov Report
@@ Coverage Diff @@
## master #2045 +/- ##
===========================================
+ Coverage 51.18% 63.73% +12.54%
===========================================
Files 200 201 +1
Lines 15531 15527 -4
===========================================
+ Hits 7950 9896 +1946
+ Misses 6513 4392 -2121
- Partials 1068 1239 +171
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: xiechengsheng XIE1995@whut.edu.cn
Ⅰ. Describe what this PR did
Since the Makefile has been updated by previous PR, the install step in
INSTALLATION.md
should also be updated.Ⅱ. Does this pull request fix one issue?
None
Ⅲ. Describe how you did it
Ⅳ. Describe how to verify it
Ⅴ. Special notes for reviews