Skip to content

Commit 0c60bd8

Browse files
committed
Fix crash on startup
1 parent 375bad3 commit 0c60bd8

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

.github/workflows/build_and_publish.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,6 @@
1818
- name: Build
1919
run: ./gradlew build -x test
2020

21-
- name: Test
22-
run: ./gradlew test check
23-
24-
- if: github.repository == 'FabricCompatibilityLayers/Mod-Remapping-API'
25-
name: Sonar
26-
run: ./gradlew jacocoTestCoverageVerification jacocoTestReport sonar
27-
env:
28-
SONAR_URL: ${{ secrets.SONAR_URL }}
29-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
30-
3121
- if: github.repository == 'FabricCompatibilityLayers/Mod-Remapping-API' && github.ref_type == 'tag'
3222
name: Publish
3323
run: ./gradlew build modrinth

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ org.gradle.jvmargs=-Xmx1G
1111
spasm_version=0.2
1212

1313
# Mod Properties
14-
mod_version = 1.27.0
14+
mod_version = 1.27.1
1515
maven_group = io.github.fabriccompatibilitylayers
1616
archives_base_name = mod-remapping-api

src/main/java/io/github/fabriccompatibilitylayers/modremappingapi/impl/remapper/minecraft/MinecraftRemapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public static void addMinecraftJar(TinyRemapper remapper, MappingsRegistry mappi
9696
}
9797

9898
for (var path : classPath) {
99-
Constants.MAIN_LOGGER.debug("Appending '{}' to remapper classpath", path);
99+
Constants.MAIN_LOGGER.debug("Appending '%s' to remapper classpath", path);
100100
remapper.readClassPathAsync(path);
101101
}
102102
}

0 commit comments

Comments
 (0)