Fork me on GitHub
#leiningen
<
2020-05-20
>
Yehonathan Sharvit15:05:29

Is there a way to run lein repl and pass to it a form to evaluate without leaving the repl?

mikerod15:05:08

these perhaps relate

nickmbailey21:05:44

i'm trying to debug an auth issue when downloading dependencies. when i run 'lein deps :tree' to see exactly where the offending dependency is coming from though, i get the unauthorized error before the tree prints out at all

nickmbailey21:05:58

is there a way to see what the dependency tree was up to the point where the offending dep derailed things?

mikerod22:05:47

@nickmbailey you can try DEBUG=true lein deps :tree but not sure it’ll be enough

mikerod22:05:25

then just try to process of elimination by adding your deps in 1 by 1 etc

nickmbailey22:05:35

yeah actually the stack trace that prints out when you add DEBUG=true shows the direct parent of the dep that failed to resolve