aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/commands.md
diff options
context:
space:
mode:
Diffstat (limited to 'lux-bootstrapper/commands.md')
-rw-r--r--lux-bootstrapper/commands.md22
1 files changed, 18 insertions, 4 deletions
diff --git a/lux-bootstrapper/commands.md b/lux-bootstrapper/commands.md
index 33fa874ba..ca8436c3b 100644
--- a/lux-bootstrapper/commands.md
+++ b/lux-bootstrapper/commands.md
@@ -1,6 +1,4 @@
-# Old/bootstrapping compiler
-
-## Build & install
+# Install
```
cd ~/lux/lux-bootstrapper/ \
@@ -8,7 +6,23 @@ cd ~/lux/lux-bootstrapper/ \
&& lein install
```
-## Run JBE (Read generated bytecode)
+# 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/ \