Skip to content

Commit b9dedf2

Browse files
committed
Fix possible bug
1 parent b2788fe commit b9dedf2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
task openBuildDirFabric {
22
doLast {
33
if (System.properties['os.name'].toString().toLowerCase().contains('windows')) {
4-
def buildDir = file("${project.projectDir}/neoforge/build/libs").absolutePath
4+
def buildDir = file("${project.projectDir}/fabric/build/libs").absolutePath
55
def command = ['explorer', buildDir]
66
new ProcessBuilder(command).start()
77
} else {
@@ -26,7 +26,7 @@ subprojects {
2626
apply plugin: 'java'
2727

2828
base {
29-
archivesName = "${archives_name}-${project.name.toUpperCase()}-${minecraft_version}"
29+
archivesName = "${archives_name}-${project.name.toLowerCase()}-${minecraft_version}"
3030
}
3131

3232
processResources {

0 commit comments

Comments
 (0)