Skip to content

Commit 3666d46

Browse files
committed
Just use uberjar for the executable script
1 parent 26bffc3 commit 3666d46

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

CONTRIBUTING.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@ Updating changes in the program is done by issuing `(reset)`. If you call
3636

3737
The easiest way to run the inlein client is by going into the `client` directory
3838
and running `lein run -- your params here`. If you mainly work on the daemon,
39-
you may prefer faster client startup speeds. Running `lein uberjar++` will
40-
create `target/inlein`, which is a fast executable snapshot version of the
41-
client.
39+
you may prefer faster client startup speeds. Running `lein uberjar` will create
40+
`target/inlein`, which is a fast executable snapshot version of the client.
4241

4342
## Codebase
4443

client/project.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
:scm {:dir ".."}
1212
:aliases {"javadoc" ["shell" "javadoc" "-d" "javadoc/inlein-${:version}"
1313
"-sourcepath" "src" "inlein.client"]
14-
"uberjar++" ["do"
15-
["uberjar"]
16-
["shell" "sh" "executable-jars.sh" "${:version}"]]}
14+
"uberjar" ["do"
15+
["uberjar"]
16+
["shell" "sh" "executable-jars.sh" "${:version}"]]}
1717
:plugins [[lein-shell "0.5.0"]]
1818
:jar-name "inlein-no-deps-%s.jar"
1919
:uberjar-name "inlein-%s.jar"

0 commit comments

Comments
 (0)