From 744ee69630de59ca3ba660b0aab6361cd17ce1b4 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Wed, 30 Jun 2021 23:24:55 -0400 Subject: "signature:" -> "interface:" & "structure:" -> "implementation:" "signature" & "structure" feel like very ML-specific terminology and might not be easy on programmers unfamiliar with it.--- commands.md | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'commands.md') 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 ``` --- -- cgit v1.2.3