diff options
author | Eduardo Julian | 2020-05-28 22:13:39 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-05-28 22:13:39 -0400 |
commit | fcb1dcee2a4d502b41852a4c8e26b53ae7b2041e (patch) | |
tree | 704aa1808b8c27208a942f2af4cbd9adbc5f324a /commands.md | |
parent | 2139e72d8e7c58cb355799d4a8412a0c38fb481c (diff) |
Can now export Lux code as library TAR files.
Diffstat (limited to 'commands.md')
-rw-r--r-- | commands.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/commands.md b/commands.md index 64d877e19..542bf9932 100644 --- a/commands.md +++ b/commands.md @@ -296,6 +296,8 @@ cd ~/lux/new-luxc/ && java -jar target/program.jar repl --source ~/lux/stdlib/so ``` cd ~/lux/new-luxc/ && time java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux +cd ~/lux/stdlib/ && lein clean && cd ~/lux/new-luxc/ && time java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux +cd ~/lux/new-luxc/ && java -jar target/program.jar export --source ~/lux/stdlib/source --target ~/lux/stdlib/target cd ~/lux/stdlib/target/ && java -jar program.jar ``` |