Skip to content

Commit 8eb8f82

Browse files
committed
Fix autoprefixes on Windows
1 parent eb7940c commit 8eb8f82

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
### Changes
88
99
### Bugs fixed
10+
11+
- Fix autoprefixes on Windows
1012

1113
## 1.12.0-4 (19-02-2025)
1214

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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

src/jvm/clojure/storm/Utils.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)