Skip to content

Commit

Permalink
Beta 20
Browse files Browse the repository at this point in the history
  • Loading branch information
mosemister committed Oct 11, 2023
1 parent 251c23c commit 41af0e1
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ tasks.register('buildFolia', Jar) {
archiveFileName = 'ShipsFolia.jar'



def path = project.rootDir.path + "/standalone/"
file(path).mkdirs()
destinationDirectory = file(path)
Expand All @@ -35,15 +34,14 @@ tasks.register('buildFolia', Jar) {
}
}

File translateCoreFile = file(project.projectDir.path + '/CoreTo' + type + '/build/libs/TranslateCoreFolia')
if(translateCoreFile.exists()) {
def coreFiles = zipTree(translateCoreFile)
jarFiles.add(coreFiles)
from {
jarFiles
}
File translateCoreFile = file(project.projectDir.path + '/CoreTo' + type + '/build/libs/TranslateCoreFolia.jar')
def coreFiles = zipTree(translateCoreFile)
jarFiles.add(coreFiles)
from {
jarFiles
}


}

dependencies {
Expand Down

0 comments on commit 41af0e1

Please sign in to comment.