aboutsummaryrefslogtreecommitdiff
path: root/commands.md
diff options
context:
space:
mode:
authorEduardo Julian2021-06-30 23:24:55 -0400
committerEduardo Julian2021-06-30 23:24:55 -0400
commit744ee69630de59ca3ba660b0aab6361cd17ce1b4 (patch)
tree329c11b8c3522c319c99ebd4d7c51ee0e7464bae /commands.md
parent6633cd42f2892ea71530ddeeb93a7e7c0b59faa3 (diff)
"signature:" -> "interface:" & "structure:" -> "implementation:"
"signature" & "structure" feel like very ML-specific terminology and might not be easy on programmers unfamiliar with it.
Diffstat (limited to 'commands.md')
-rw-r--r--commands.md24
1 files changed, 17 insertions, 7 deletions
diff --git a/commands.md b/commands.md
index 89eebb4c2..66256461f 100644
--- a/commands.md
+++ b/commands.md
@@ -30,13 +30,16 @@ cd ~/lux/lux-r/ && lein clean
## Build & install
```
-cd ~/lux/lux-bootstrapper/ && lein clean && lein install
+cd ~/lux/lux-bootstrapper/ \
+&& lein clean \
+&& lein install
```
## Run JBE (Read generated bytecode)
```
-cd ~/lux/jbe/bin/ && java ee.ioc.cs.jbe.browser.BrowserApplication
+cd ~/lux/jbe/bin/ \
+&& java ee.ioc.cs.jbe.browser.BrowserApplication
```
---
@@ -46,8 +49,9 @@ cd ~/lux/jbe/bin/ && java ee.ioc.cs.jbe.browser.BrowserApplication
## Test
```
-cd ~/lux/stdlib/ && lein clean && lein with-profile bibliotheca lux auto test
-cd ~/lux/stdlib/ && lein with-profile bibliotheca lux auto test
+cd ~/lux/stdlib/ \
+&& lein clean \
+&& lein with-profile bibliotheca lux auto test
```
## Deploy
@@ -69,7 +73,9 @@ cd ~/lux/stdlib/ && mvn deploy:deploy-file \
## Generate documentation
```
-cd ~/lux/stdlib/ && lein clean && lein with-profile scriptum lux auto build
+cd ~/lux/stdlib/ \
+&& lein clean \
+&& lein with-profile scriptum lux auto build
```
---
@@ -79,13 +85,17 @@ cd ~/lux/stdlib/ && lein clean && lein with-profile scriptum lux auto build
## Build
```
-cd ~/lux/stdlib/ && lein clean && lein with-profile aedifex lux auto build
+cd ~/lux/stdlib/ \
+&& lein clean \
+&& lein with-profile aedifex lux auto build
```
## Test
```
-cd ~/lux/stdlib/ && lein clean && lein with-profile aedifex lux auto test
+cd ~/lux/stdlib/ \
+&& lein clean \
+&& lein with-profile aedifex lux auto test
```
---