boot

:boot-clj: https://boot-clj.github.io/ — build tooling for Clojure. Dev chat in #boot-dev
dave 2018-11-01T01:24:26.018900Z

i was just cleaning up space on my hard drive and i realized that my boot cache had grown to 41 GB! definitely good to blow that away every now and then 😅

2👍
kwmiebach 2018-11-01T13:58:13.020300Z

Hi. I am starting with clojure+boot. I can compile an example and the jar is written, but i cannot find it. How can I find out, where it was written?

kwmiebach 2018-11-01T14:03:08.020400Z

2018-11-01T14:05:21.020900Z

missing target maybe?

kwmiebach 2018-11-01T14:17:35.023100Z

thank you @nha - I am not sure how to define the target. I tried 'boot target -d target .....' and I also tried adding :target-path "target/" to the (set-env! :dependencies in build.boot. None of this resulted in a file inside the target/ directory in my project

kwmiebach 2018-11-01T14:21:37.025100Z

I am also unsure, if I have to set the target in a separate line like boot target -d target followed by boot aot pom uber jar or all at once like boot target -d target aot pom uber jar

kwmiebach 2018-11-01T14:24:12.026Z

I tried adding -- but boot target -d target -- aot pom uber jar also resulted in an empty target directory

kwmiebach 2018-11-01T14:26:03.026700Z

When I search in my home directory I can only find the jar in a cache directory:

kwmiebach 2018-11-01T14:26:28.027200Z

Like ~/.boot/cache/tmp/home/kwmiebach/c/clojure-boot/dd6/-7bl902/fib-1.0.0.jar

dominicm 2018-11-01T14:37:10.028100Z

@kwmiebach all at once, with target at the end

dominicm 2018-11-01T14:37:31.028800Z

boot aot target -d foo

kwmiebach 2018-11-01T15:12:35.029800Z

that worked for me at last @dominicm thank you.