We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9671e03 commit b50d9f0Copy full SHA for b50d9f0
1 file changed
src/main/clojure/clojure/tools/build/tasks/uber.clj
@@ -198,7 +198,7 @@
198
(throw (ex-info (str "Uber task found file but can't read its content in " lib " at path " (.getPath f))
199
{:path (.getPath f)} e)))))
200
new-state (try
201
- (let [path (.toString (.relativize source-path (.toPath f)))
+ (let [path (str/replace (.toString (.relativize source-path (.toPath f))) \\ \/)
202
source-time (FileTime/fromMillis (.lastModified f))
203
out-file (jio/file out-dir path)]
204
(explode1 is path (.isDirectory f) source-time out-file lib context the-state))
0 commit comments