aboutsummaryrefslogtreecommitdiff
path: root/stdlib/commands.md
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/commands.md')
-rw-r--r--stdlib/commands.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/stdlib/commands.md b/stdlib/commands.md
index ff590d8a6..00de913b2 100644
--- a/stdlib/commands.md
+++ b/stdlib/commands.md
@@ -9,7 +9,7 @@ cd ~/lux/stdlib/ \
cd ~/lux/stdlib/ \
&& lux clean \
-&& lux auto test
+&& lux with bibliotheca auto test
```
## Deploy
@@ -26,6 +26,9 @@ cd ~/lux/stdlib/ && mvn deploy:deploy-file \
-DartifactId=stdlib \
-Dversion=0.6.0-SNAPSHOT \
-Dpackaging=tar
+
+cd ~/lux/stdlib/ \
+&& lux install
```
## Generate documentation
@@ -60,6 +63,15 @@ cd ~/lux/stdlib/ \
&& lein clean \
&& lein with-profile aedifex lux build \
&& mv target/program.jar aedifex.jar
+
+cd ~/lux/stdlib/ \
+&& lux clean \
+&& lux with aedifex auto build
+
+cd ~/lux/stdlib/ \
+&& lux clean \
+&& lux with aedifex build \
+&& mv target/program.jar aedifex.jar
```
## Test
@@ -68,5 +80,9 @@ cd ~/lux/stdlib/ \
cd ~/lux/stdlib/ \
&& lein clean \
&& lein with-profile aedifex lux auto test
+
+cd ~/lux/stdlib/ \
+&& lux clean \
+&& lux with aedifex auto test
```