aboutsummaryrefslogtreecommitdiff
path: root/lux-lein/commands.md
diff options
context:
space:
mode:
Diffstat (limited to 'lux-lein/commands.md')
-rw-r--r--lux-lein/commands.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/lux-lein/commands.md b/lux-lein/commands.md
new file mode 100644
index 000000000..f716ddb46
--- /dev/null
+++ b/lux-lein/commands.md
@@ -0,0 +1,23 @@
+# Install
+
+```
+cd ~/lux/lux-lein/ \
+&& lein install
+```
+
+# Release
+
+```
+LUX_VERSION=0.7.0 && \
+cd ~/lux/lux-lein/ && \
+lein pom && \
+mv pom.xml RELEASE/lein-luxc-$LUX_VERSION.pom && \
+mv target/lein-luxc-$LUX_VERSION.jar RELEASE/lein-luxc-$LUX_VERSION.jar && \
+cd RELEASE && \
+touch README.md && \
+zip lein-luxc-$LUX_VERSION-sources.jar README.md && \
+zip lein-luxc-$LUX_VERSION-javadoc.jar README.md && \
+rm README.md && \
+for file in *.*; do gpg -ab $file; done
+```
+