Skip to content

Commit 1a7c280

Browse files
committed
Copy over BundleList fix from main
1 parent eb016fa commit 1a7c280

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/groovy/net/minecraftforge/forgedev/legacy/tasks/BundleList.groovy

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ abstract class BundleList extends DefaultTask {
7676
def (group, name, other) = artifact.split(':', 3)
7777
//println("Group: $group Name: $name")
7878
def key = "$group:$name"
79+
if (other.indexOf(':') != -1){
80+
key += ':' + other.split(':', 2)[1]
81+
//println("\tKey: $key")
82+
}
7983
if (!entries.containsKey(key))
8084
entries.put(key, line)
8185
}

0 commit comments

Comments
 (0)