# Install ``` cd ~/lux/lux-bootstrapper/ \ && lein clean \ && lein install ``` # Release ``` LUX_VERSION=0.7.0 && \ cd ~/lux/lux-bootstrapper/ && \ lein pom && \ mv pom.xml RELEASE/lux-bootstrapper-$LUX_VERSION.pom && \ cp ~/.m2/repository/com/github/luxlang/lux-bootstrapper/$LUX_VERSION/lux-bootstrapper-$LUX_VERSION.jar RELEASE && \ cd RELEASE && \ touch README.md && \ zip lux-bootstrapper-$LUX_VERSION-sources.jar README.md && \ zip lux-bootstrapper-$LUX_VERSION-javadoc.jar README.md && \ rm README.md && \ for file in *.*; do gpg -ab $file; done ``` # Run JBE (Read generated bytecode) ``` cd ~/lux/jbe/bin/ \ && java ee.ioc.cs.jbe.browser.BrowserApplication ```