Skip to content

Commit 5d242f3

Browse files
committed
Cleanup; bump version
1 parent 42d46da commit 5d242f3

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

Makefile

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11

22
help:
33
@echo
4-
@echo 'Usage: make {boot|boot-faster}'
4+
@echo 'Usage: make {boot|help}'
55
@echo
66
@echo 'Targets:'
77
@echo ' boot Create executable boot jar file.'
8-
@echo ' boot-faster Create executable boot jar file with class data sharing.'
98
@echo
109

1110
clean:
@@ -21,13 +20,4 @@ boot: build
2120
echo 'exit' >> boot
2221
cat target/boot*-standalone.jar >> boot
2322
chmod 0755 boot
24-
@echo "*** Done. Copy ./boot to a directory in your PATH. ***"
25-
26-
boot-faster: build
27-
echo '#!/usr/bin/env bash' > boot
28-
echo 'java -Xshare:on -Xbootclasspath/a:$$0 tailrecursion.boot "$$@"' >> boot
29-
echo 'exit' >> boot
30-
cat target/boot*-standalone.jar >> boot
31-
chmod 0755 boot
32-
sudo java -Xshare:dump -Xbootclasspath/a:boot
33-
@echo "*** Done. Copy ./boot to a directory in your PATH. ***"
23+
@echo "*** Done. Created boot executable: ./boot ***"

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject tailrecursion/boot "0.2.1"
1+
(defproject tailrecursion/boot "0.2.2"
22
:description "A dependency setup/build tool for Clojure."
33
:url "https://github.com/tailrecursion/boot"
44
:license {:name "Eclipse Public License"

boot.edn test/fixtures/boot.edn

File renamed without changes.

0 commit comments

Comments
 (0)