We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4472095 commit aa67338Copy full SHA for aa67338
.gitignore
@@ -25,4 +25,3 @@ install.cmd
25
/out/
26
/.lein-env
27
.inline-deps
28
-/.artifacts-cache
src/refactor_nrepl/artifacts.clj
@@ -13,7 +13,8 @@
13
java.util.zip.GZIPInputStream
14
java.util.jar.JarFile))
15
16
-(def artifacts-file ".artifacts-cache")
+(def artifacts-file (str (System/getProperty "java.io.tmpdir")
17
+ "/refactor-nrepl-artifacts-cache"))
18
19
(defn get-last-modified-from-file
20
"Returns last modified time in milliseconds or nil if file does not exist."
0 commit comments