leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
Yehonathan Sharvit 2020-05-20T15:08:29.135100Z

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

2020-05-20T15:30:08.135600Z

these perhaps relate

2020-05-20T21:29:44.136900Z

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

2020-05-20T21:30:58.138Z

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

2020-05-20T22:07:47.138500Z

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

2020-05-20T22:08:25.139100Z

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

2020-05-20T22:29:35.140Z

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

2020-05-20T22:30:44.140300Z

thanks @mikerod!

2020-05-20T22:49:02.140500Z

Nice!