We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2788fe commit b9dedf2Copy full SHA for b9dedf2
1 file changed
build.gradle
@@ -1,7 +1,7 @@
1
task openBuildDirFabric {
2
doLast {
3
if (System.properties['os.name'].toString().toLowerCase().contains('windows')) {
4
- def buildDir = file("${project.projectDir}/neoforge/build/libs").absolutePath
+ def buildDir = file("${project.projectDir}/fabric/build/libs").absolutePath
5
def command = ['explorer', buildDir]
6
new ProcessBuilder(command).start()
7
} else {
@@ -26,7 +26,7 @@ subprojects {
26
apply plugin: 'java'
27
28
base {
29
- archivesName = "${archives_name}-${project.name.toUpperCase()}-${minecraft_version}"
+ archivesName = "${archives_name}-${project.name.toLowerCase()}-${minecraft_version}"
30
}
31
32
processResources {
0 commit comments