Is there a way to run lein repl
and pass to it a form to evaluate without leaving the repl?
@viebel https://github.com/technomancy/leiningen/blob/stable/sample.project.clj#L373-L376
these perhaps relate
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
is there a way to see what the dependency tree was up to the point where the offending dep derailed things?
@nickmbailey you can try DEBUG=true lein deps :tree
but not sure it’ll be enough
then just try to process of elimination by adding your deps in 1 by 1 etc
yeah actually the stack trace that prints out when you add DEBUG=true shows the direct parent of the dep that failed to resolve
thanks @mikerod!
Nice!