-
Notifications
You must be signed in to change notification settings - Fork 379
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
Wrong build instructions in README #270
Comments
Thanks for pointing this out, the instructions definitely need changing. Though, it's not entirely obvious what is the right thing to say in there: containers/image is a library-only package, so building it separately does not give the user anything immediately useful, whatever the build instructions are. Adding a default We could provide some instructions for integrating the library into a caller. Or we could just point at I guess, preferably, both? |
Sure, but what's about development? Would it not make sense for development purposes to have the build part of the Makefile. Consumers will indeed not see any of this. |
For development, the current default (get all tools, run tests) broadly makes sense. Sure, adding a |
From the README:
That is not quite correct, if you check out the source, you will first need to run make vendor before being able to run go build.
On this note I am wondering why the actual go build is not integrated into the Makefile, depending on vendor. In fact, imo it should be the default target.
You should be able to checkout the sources and run make and everything gets bootstrapped and compiled.
The text was updated successfully, but these errors were encountered: