From b22dc25b3b596267e2bcc556f33d8bce5f0096b0 Mon Sep 17 00:00:00 2001 From: Danielle Tomlinson Date: Wed, 8 Feb 2017 21:23:03 +0100 Subject: [PATCH] Add note about fs permissions in get-deps error --- leiningen-core/src/leiningen/core/classpath.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leiningen-core/src/leiningen/core/classpath.clj b/leiningen-core/src/leiningen/core/classpath.clj index 0db9e5dc..fb80290b 100644 --- a/leiningen-core/src/leiningen/core/classpath.clj +++ b/leiningen-core/src/leiningen/core/classpath.clj @@ -293,7 +293,7 @@ (catch DependencyResolutionException e ;; Cannot recur from catch/finally so have to put this in its own defn (print-failures e) - (warn "This could be due to a typo in :dependencies or network issues.") + (warn "This could be due to a typo in :dependencies, file system permissions, or network issues.") (warn "If you are behind a proxy, try setting the 'http_proxy' environment variable.") (throw (ex-info "Could not resolve dependencies" {:suppress-msg true :exit-code 1} e)))