Skip to content

Commit 38b2cd3

Browse files
committed
fix the fix
1 parent 1cab9eb commit 38b2cd3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "dev.isxander.modstitch"
9-
version = "0.8.2"
9+
version = "0.8.3"
1010

1111
repositories {
1212
mavenCentral()

src/main/kotlin/dev/isxander/modstitch/base/loom/BaseLoomImpl.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,10 @@ class BaseLoomImpl(
225225

226226
override fun createProxyConfigurations(target: Project, sourceSet: SourceSet) {
227227
if (sourceSet.name != SourceSet.MAIN_SOURCE_SET_NAME) {
228-
target.loom.createRemapConfigurations(sourceSet)
229-
} else if (type == LoomType.Remap) {
228+
if (type == LoomType.Remap) {
229+
target.loom.createRemapConfigurations(sourceSet)
230+
}
231+
} else {
230232
createProxyConfigurations(target, FutureNamedDomainObjectProvider.from(target.configurations, Constants.Configurations.LOCAL_RUNTIME))
231233
}
232234

0 commit comments

Comments
 (0)