-
Notifications
You must be signed in to change notification settings - Fork 113
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-only] Run make build
instead of make
#1658
Conversation
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would create a changelog item based on your changes. |
Hm, seems that the |
Use `make build` instead of `make` in "build from sources" instructions, as per #1654.
Apart from /var/tmp/reva/, /etc/revad/ will need to be created, and editing anything under /etc will require sudo.
README.md
Outdated
$ cd examples/storage-references | ||
$ ../../cmd/revad/revad -dev-dir . | ||
$ make build | ||
$ sudo mkdir -p /etc/revad |
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.
Can you remove sudo from the commands? We don't want to assume access control.
Not merged yet #1655 |
The current 'Build and run it yourself' instructions from the readme will fail if there are unreleased changes, as described in #1654.
As per #1654 (comment), it should however be enough to run
make build
instead of themake
step.Continued from #1657.