Snip -SNAPSHOT and its 1.7.3
Hook battery / PR-target hook battery (push) Successful in 10s

This commit is contained in:
Hammer
2026-07-16 18:51:09 -04:00
parent 2f78d57fbd
commit 7de09e35e1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
<groupId>com.threerings</groupId>
<artifactId>nenya-parent</artifactId>
<packaging>pom</packaging>
<version>1.7.3-SNAPSHOT</version>
<version>1.7.3</version>
<name>Nenya Parent</name>
<description>Facilities for making Java games.</description>
@@ -309,7 +309,7 @@ public abstract class ComponentBundler {
info[0] = path.substring(0, slsidx);
// we need to turn file separator characters (platform dependent) into jar path separator
// characters (always forward slash)
info[0].replace(File.separatorChar, '/');
info[0] = info[0].replace(File.separatorChar, '/');
return info;
}