aboutsummaryrefslogtreecommitdiff
path: root/commands.md
diff options
context:
space:
mode:
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
```
---