We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c7f44 commit 9038cc7Copy full SHA for 9038cc7
build.clj
@@ -45,7 +45,8 @@
45
OPTS can be a map of
46
:jvm-opts A vector of options ot pass to the JVM."
47
[opts]
48
- (io/delete-file "eca")
+ (when (.exists (io/file "eca"))
49
+ (io/delete-file "eca"))
50
(println "Generating bin...")
51
(let [jvm-opts (concat (:jvm-opts opts []) ["-server"])]
52
((requiring-resolve 'deps-bin.impl.bin/build-bin)
0 commit comments