diff options
author | nea <romangraef@gmail.com> | 2022-06-01 00:08:58 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-06-01 00:08:58 +0200 |
commit | 139d39f8a33de8917b3f7a5fe9521372600f47ed (patch) | |
tree | 123fbdbb5650cb7ad4b84c1e93cbb80a42eb9e19 | |
parent | 8ebfdac54f275a924ae9ab78742173af371b7527 (diff) | |
download | NotEnoughUpdates-139d39f8a33de8917b3f7a5fe9521372600f47ed.tar.gz NotEnoughUpdates-139d39f8a33de8917b3f7a5fe9521372600f47ed.tar.bz2 NotEnoughUpdates-139d39f8a33de8917b3f7a5fe9521372600f47ed.zip |
Fix up CI
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b6d0cbd..9260446a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: distribution: zulu cache: gradle - name: Build with Gradle - run: chmod +x ./gradlew && ./gradlew setupCIWorkspace build --no-daemon + run: chmod +x ./gradlew && ./gradlew clean test remapJar --no-daemon - uses: actions/upload-artifact@v2 with: path: build/libs/*-dep.jar diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java index 0b2a6ecc..cac89e77 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java @@ -180,7 +180,6 @@ public class NotEnoughUpdates { @EventHandler public void preinit(FMLPreInitializationEvent event) { INSTANCE = this; - //SomeRandomTest.fun(); neuDir = new File(event.getModConfigurationDirectory(), "notenoughupdates"); neuDir.mkdirs(); |