Skip to content

Commit

Permalink
Fix #1186 Incorrect location of launch.json for vscode task
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Oct 9, 2024
1 parent 8c2d552 commit c6e4025
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public abstract class GenVsCodeProjectTask extends AbstractLoomTask {
public GenVsCodeProjectTask() {
setGroup(Constants.TaskGroup.IDE);
getLaunchConfigurations().set(getProject().provider(this::getConfigurations));
getLaunchJson().convention(getProject().getRootProject().getLayout().getProjectDirectory().file("vscode/launch.json"));
getLaunchJson().convention(getProject().getRootProject().getLayout().getProjectDirectory().file(".vscode/launch.json"));
}

private List<VsCodeConfiguration> getConfigurations() {
Expand Down

0 comments on commit c6e4025

Please sign in to comment.