Skip to content

Commit 39f8982

Browse files
committed
Updated to include
launchTarget configuration
1 parent f4fb104 commit 39f8982

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/org/mangorage/mangobotgradle/tasks/SetupPluginsTask.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ public void run() {
9797
if (!Files.exists(getProject().getProjectDir().toPath().resolve("build/run/launch/")))
9898
Files.createDirectories(getProject().getProjectDir().toPath().resolve("build/run/launch/"));
9999

100-
Files.copy(a.toPath(), getProject().getProjectDir().toPath().resolve("build/run/launch/" + a.getName()), StandardCopyOption.REPLACE_EXISTING);
100+
// TODO: Fix it later
101+
Files.copy(a.toPath(), getProject().getProjectDir().toPath().resolve("build/run/launch/launch.jar"), StandardCopyOption.REPLACE_EXISTING);
101102
} catch (IOException e) {
102103
throw new RuntimeException(e);
103104
}

0 commit comments

Comments
 (0)