mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
[FIX] Название архива с LaunchServer.
This commit is contained in:
parent
82ee209c55
commit
d33ecfe299
1 changed files with 1 additions and 2 deletions
|
@ -84,7 +84,6 @@ task launch4jM(type: Copy) {
|
|||
includeEmptyDirs false
|
||||
eachFile { FileCopyDetails fcp ->
|
||||
if (fcp.relativePath.pathString.startsWith("launch4j-")) {
|
||||
// remap the file to the root
|
||||
def segments = fcp.relativePath.segments
|
||||
def pathSegments = segments[1..-1] as String[]
|
||||
fcp.relativePath = new RelativePath(!fcp.file.isDirectory(), pathSegments)
|
||||
|
@ -117,7 +116,7 @@ task dumpLibs(type: Copy) {
|
|||
|
||||
task bundle(type: Zip) {
|
||||
dependsOn parent.childProjects.Launcher.tasks.build, tasks.dumpLibs, tasks.jar
|
||||
archiveName 'bundle.zip'
|
||||
archiveName 'LaunchServer.zip'
|
||||
destinationDir file("$buildDir")
|
||||
from(tasks.dumpLibs.destinationDir) { into 'libraries' }
|
||||
from tasks.jar.archivePath
|
||||
|
|
Loading…
Reference in a new issue