hm, I'm getting a null pointer exception when I try to run the shebang deps example
#!/usr/bin/env bash
"exec" "plk" "-Sverbose" "-Sdescribe" "-Sdeps" "{:deps {andare {mvn/version \"0.7.0\"}}}" "-Ksf" "$0" "$@"
(require '[clojure.core.async :refer [chan go <! >!]])
(def c (chan))
(go (prn (<! c)))
(go (>! c *command-line-args*))
@nate uploaded a file: https://clojurians.slack.com/files/U0510902N/FB9L70YM8/null_pointer_exception.txt
I have planck version 2.15.0
anyone else run into this?
Add a colon prior to mvn/version
ah cool
Something else may be wrong, but at least that gets beyond the NPE
indeed, but that does unlock the gate
thank you
TBH, I don't recall why it has -Sverbose
and -Sdescribe
. That seems like another typo
oh
I added those in an attempt to understand what was going on
Cool. @nate Another typo in that example might be the need for Andare 0.9.0
I'll see if I can get it cleaned up and submit a PR
With that, and ensuring that I don't have a stale .planck_cache
lying around, it works
cool, works for me too