Skip to content

Commit

Permalink
Use eclipse project name rather than gradle's for vscode launch (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightenom authored Jul 4, 2024
1 parent f188fa2 commit e0a30b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public void vscode(Project project, EclipseModel eclipse)
.withEnvironmentVariables(adaptEnvironment(runImpl, RunsUtil::buildRunWithEclipseModClasses))
.withShortenCommandLine(ShortCmdBehaviour.ARGUMENT_FILE)
.withMainClass(runImpl.getMainClass().get())
.withProjectName(project.getName())
.withProjectName(eclipse.getProject().getName())
.withName(runName);

if (IdeManagementExtension.isVscodePluginImport(project))
Expand Down

0 comments on commit e0a30b7

Please sign in to comment.