File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 77### Changes
88
99### Bugs fixed
10+
11+ - Fix autoprefixes on Windows
1012
1113## 1.12.0-4 (19-02-2025)
1214
Original file line number Diff line number Diff line change 55 <artifactId >clojure</artifactId >
66 <name >clojure</name >
77 <packaging >jar</packaging >
8- <version >1.12.0-4 </version >
8+ <version >1.12.0-5 </version >
99 <url >http://clojure.org/</url >
1010 <description >Clojure core environment and runtime library.</description >
1111
Original file line number Diff line number Diff line change @@ -287,13 +287,12 @@ public static Set<String> getSrcDirRootNamespaces(File dir) {
287287 List <File > allDirFiles = new ArrayList ();
288288
289289 Pattern pattern = Pattern .compile (".+?" + dir .getName () + "/(.+?)/.*" );
290-
291290 collectFiles (dir , allDirFiles );
292291 for (File f : allDirFiles ) {
293292 if (f .getName ().endsWith (".clj" ) ||
294293 f .getName ().endsWith (".cljc" )) {
295-
296- Matcher matcher = pattern .matcher (f .getAbsolutePath ());
294+
295+ Matcher matcher = pattern .matcher (f .getAbsolutePath (). replace ( " \\ " , "/" ) );
297296
298297 if (matcher .find () && matcher .groupCount () >= 1 ) {
299298 String rootDir = matcher .group (1 );
You can’t perform that action at this time.
0 commit comments