aboutsummaryrefslogtreecommitdiff
path: root/lux-lua/commands.md
diff options
context:
space:
mode:
authorEduardo Julian2021-07-12 00:03:36 -0400
committerEduardo Julian2021-07-12 00:03:36 -0400
commit86df87512966e8038d70624ab654262ce14a915c (patch)
treee96d6709c04e7f3fc77f9d9912b86ef34e9c7ef7 /lux-lua/commands.md
parentabe24425ced15fd784ef6c62d6f186af72b491db (diff)
Better syntax for parallel-hierarchy imports.
Diffstat (limited to 'lux-lua/commands.md')
-rw-r--r--lux-lua/commands.md15
1 files changed, 10 insertions, 5 deletions
diff --git a/lux-lua/commands.md b/lux-lua/commands.md
index f78634aec..769ea10d8 100644
--- a/lux-lua/commands.md
+++ b/lux-lua/commands.md
@@ -1,13 +1,11 @@
-# Lua compiler
-
-## Test
+# Test
```
cd ~/lux/lux-lua/ && lein lux auto test
cd ~/lux/lux-lua/ && lein clean && lein lux auto test
```
-## Build
+# Build
```
## Develop
@@ -23,7 +21,7 @@ cd ~/lux/lux-lua/ \
&& mv target/program.jar jvm_based_compiler.jar
```
-## Try
+# Try
```
## Compile Lux's Standard Library's tests using a JVM-based compiler.
@@ -33,3 +31,10 @@ cd ~/lux/stdlib/ \
&& ~/lua-5.4.2/install/bin/lua ~/lux/stdlib/target/program.lua
```
+# Deploy
+
+```
+cd ~/lux/lux-lua/ \
+&& mvn install:install-file -Dfile=jvm_based_compiler.jar -DgroupId=com.github.luxlang -DartifactId=lux-lua -Dversion=0.6.0-SNAPSHOT -Dpackaging=jar
+```
+