boot

:boot-clj: https://boot-clj.github.io/ β€” build tooling for Clojure. Dev chat in #boot-dev
patrick 2019-04-25T05:59:29.001700Z

Hi short question: how exactly do i pass arguments to my program through boot run? i saw that there is a -a flag but i don't get how i can pass multiple arguments like boot run -a -i somefile.txt -o someotherfile.txt

patrick 2019-04-25T06:13:52.002700Z

ok wow i solved my issue by running boot run -a '-i' -a 'somefile.txt' -a '-o' -a 'someotherfile.txt' but still thanks!

2019-04-25T15:41:04.001500Z

I'm trying to run a repl with boot using JDK 11 on windows... Even when the java path is set to JDK11, running boot repl always seems to use JDK8... Is there any way to force boot repl to use JDK11 (on windows, in Linux, I have no issues at all)?

2019-04-25T15:47:18.002Z

@kurt-o-sys sounds like it could be issue with windows path. when you type java -v in windows, does it report jdk11 or jdk8?

flyboarder 2019-04-25T16:03:03.003400Z

@alandipert @kurt-o-sys this is a known issue with the windows build, the current java exe wrapper doesn’t support new versions of the openjdk

flyboarder 2019-04-25T16:03:41.004100Z

Run boot using WSL instead, it has better support

2019-04-25T19:36:10.006200Z

@alandipert it shows JDK11 @flyboarder yeah, that's what I do now, but WSL doesn't integrate very well with an IDE πŸ™‚. Anyway, I'll probably try to run graphical programs using WSL. Should be possible. (Or just drop Windows again - I decided to give Windows another chance, without much of a success πŸ˜› )

flyboarder 2019-04-25T19:37:16.007600Z

@kurt-o-sys our designer is running boot via WSL and VS Code within Windows, both accessing the same files. It works ok.

flyboarder 2019-04-25T19:37:44.008700Z

There are registry hacks for the exec wrapper, they have been noted on GitHub issues

2019-04-25T19:37:53.008900Z

yeah, they access the same files, that's not the issue... it's about the REPL, and shortkeys copying buffers to the repl etc.

flyboarder 2019-04-25T19:38:09.009400Z

Ah I see what you mean

2019-04-25T19:38:33.009700Z

well, I'll manage, good to know it is an issue on win.

flyboarder 2019-04-25T19:40:56.010400Z

Im planning to work on it, but we need to change a lot before we will get native windows support

2019-04-25T19:50:25.010900Z

np, and thx. I'll figure something