-
Notifications
You must be signed in to change notification settings - Fork 11.2k
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
README and Makefile cleanups #3713
Conversation
…e release docs into a separate folder, etc.
echo docker run `echo $(DOCKER_VOLS) | xargs` -t $(DOCKER_IMAGE_TAG) /bin/bash -c 'cd /lantern && VERSION="'$$VERSION'" HEADLESS="'$$HEADLESS'" BNS_CERT_PASS="'$$BNS_CERT_PASS'" make $*' && \ | ||
docker run `echo $(DOCKER_VOLS) | xargs` -t $(DOCKER_IMAGE_TAG) /bin/bash -c 'cd /lantern && VERSION="'$$VERSION'" HEADLESS="'$$HEADLESS'" BNS_CERT_PASS="'$$BNS_CERT_PASS'" make $*'; | ||
|
||
docker-test: system-checks |
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.
@myleshorton Why does this target need to duplicate the code on lines 173 to 180?
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.
Oh sorry -- committed docker-test by mistake. Will fix!
…n checkout regardless and fixed make lantern example
Hey how's this look now @oxtoacart? |
LGTM. I made one small addition about using clean-desktop - e6b20a5 |
This breaks out the release details from the README @xiam and @oxtoacart since that only applies to Lantern developers actually creating releases and goes into detail that's unusual for a Makefile. I also added simple instructions for building "the old fashioned way" with just
go build
. Finally, I added back themake docker
target in the Makefile.