Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 2387817

Browse files
authored
Fix last PR's issues with building (#6773)
* fix(submodules): Remove broken, unused gl4es submodule * fix(build): Git checks had typo version also gets updated here because I changed their build.gradle
1 parent 98947f2 commit 2387817

File tree

7 files changed

+6
-7
lines changed

7 files changed

+6
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30ec1e2df80972e3eb89f61f9c0894f5926594ef
1+
98947f23d338012c5869dc13de31cb39dadba333
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d5fc862f0eba62565dee5b8e511544573c281ec1
1+
98947f23d338012c5869dc13de31cb39dadba333
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4903cfc8d3afd63918f59caf0a146efc2d837069
1+
98947f23d338012c5869dc13de31cb39dadba333

arc_dns_injector/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jar {
1212
attributes("Manifest-Version": "1.0",
1313
"PreMain-Class": "git.artdeell.arcdns.ArcDNSInjectorAgent")
1414
}
15-
if (gitUsed){
15+
if (gitUsed()){
1616
File versionFile = file("../app_pojavlauncher/src/main/assets/components/arc_dns_injector/version")
1717
versionFile.write(getGitHash(project.name))
1818
}

forge_installer/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jar {
1515
from {
1616
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
1717
}
18-
if (gitUsed){
18+
if (gitUsed()){
1919
File versionFile = file("../app_pojavlauncher/src/main/assets/components/forge_installer/version")
2020
versionFile.write(getGitHash(project.name))
2121
}

gl4es

Lines changed: 0 additions & 1 deletion
This file was deleted.

jre_lwjgl3glfw/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jar {
1010
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
1111
archiveBaseName = "lwjgl-glfw-classes"
1212
destinationDirectory.set(file("../app_pojavlauncher/src/main/assets/components/lwjgl3/"))
13-
if (gitUsed){
13+
if (gitUsed()){
1414
File versionFile = file("../app_pojavlauncher/src/main/assets/components/lwjgl3/version")
1515
versionFile.write(getGitHash(project.name))
1616
}

0 commit comments

Comments
 (0)