From d33ecfe29942491a6b75cb020b2b7e1b43b40a28 Mon Sep 17 00:00:00 2001 From: zaxar163 Date: Fri, 8 Mar 2019 16:03:42 +0300 Subject: [PATCH] =?UTF-8?q?[FIX]=20=D0=9D=D0=B0=D0=B7=D0=B2=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=20=D1=81=20?= =?UTF-8?q?LaunchServer.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LaunchServer/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LaunchServer/build.gradle b/LaunchServer/build.gradle index e449f034..0f2209c1 100644 --- a/LaunchServer/build.gradle +++ b/LaunchServer/build.gradle @@ -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