aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/commands.md
blob: ca8436c3b0a5dd35ced2f23c8829cfc6cb1b72b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Install

```
cd ~/lux/lux-bootstrapper/ \
&& lein clean \
&& lein install
```

# Release

```
LUX_VERSION=0.7.0 && \
cd ~/lux/lux-bootstrapper/ && \
lein pom && \
mv pom.xml RELEASE/lux-bootstrapper-$LUX_VERSION.pom && \
cp ~/.m2/repository/com/github/luxlang/lux-bootstrapper/$LUX_VERSION/lux-bootstrapper-$LUX_VERSION.jar RELEASE && \
cd RELEASE && \
touch README.md && \
zip lux-bootstrapper-$LUX_VERSION-sources.jar README.md && \
zip lux-bootstrapper-$LUX_VERSION-javadoc.jar README.md && \
rm README.md && \
for file in *.*; do gpg -ab $file; done
```

# Run JBE (Read generated bytecode)

```
cd ~/lux/jbe/bin/ \
&& java ee.ioc.cs.jbe.browser.BrowserApplication
```