I'm attempting to use https://github.com/JeremS/prose from babashka. It uses sci, is that a blocker?
@ambrosebs I think the major blocker would be instaparse: https://github.com/JeremS/prose/blob/a4d9c1d272b64e49c7c207891e3036e806835482/deps.edn#L3
babashka.fs does not understand ~/
and I have to manually use (System/getProperty "user.home")
, right?
correct
~
is bash syntax
Is there a way to get bb run
to to display the available tasks? bb run
simply starts REPL and bb run -h
only says "No such task". (Of course, I can always cat bb.edn
:))
@holyjak bb tasks
does this
Thanks a lot! Haven't notice the bb tasks
command 👀
I think bb run
could do it too if invoked with no other args maybe yes, or we should just crash
bb run --help
should work though
This is in the help of bb --help
:
Tasks:
tasks Print list of available tasks.
run <task> Run task. See run --help for more details.
Ah, bb tasks
was hidden under https://book.babashka.org/#_task_local_options that I did not consider relevant to my case and thus just skipped.
Oh, just noticed I have bb 0.3.4. That explains a lot :)