Skip to content

Commit

Permalink
v1.11.1.1414
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Dec 16, 2023
1 parent 9f828a8 commit 8854ca9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deps.bat
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ public class ClojureToolsDownloader {
(.getPath (io/file xdg-config-home "clojure")))
(.getPath (io/file config-dir ".cpcache")))]
(if (.exists (io/file deps-edn))
(if (.canWrite (io/file *dir*))
(if (-> (io/file (or *dir* ".")) (.canWrite))
{:cache-dir (.getPath (io/file *dir* ".cpcache"))
:cache-dir-key *dir*}
;; can't write to *dir*/.cpcache
Expand Down
2 changes: 1 addition & 1 deletion deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ public class ClojureToolsDownloader {
(.getPath (io/file xdg-config-home "clojure")))
(.getPath (io/file config-dir ".cpcache")))]
(if (.exists (io/file deps-edn))
(if (.canWrite (io/file *dir*))
(if (-> (io/file (or *dir* ".")) (.canWrite))
{:cache-dir (.getPath (io/file *dir* ".cpcache"))
:cache-dir-key *dir*}
;; can't write to *dir*/.cpcache
Expand Down
2 changes: 1 addition & 1 deletion resources/DEPS_CLJ_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.1.1414-SNAPSHOT
1.11.1.1414

0 comments on commit 8854ca9

Please sign in to comment.