Skip to content

Commit

Permalink
correcting file watch path
Browse files Browse the repository at this point in the history
Signed-off-by: Arun Venmany <Arun.Kumar.V.N@ibm.com>
  • Loading branch information
arunvenmany-ibm committed Dec 18, 2024
1 parent b96280f commit 264e38c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public void start(InitializeParams initializeParams, XMLExtensionsRegistry xmlEx
for (LibertyWorkspace workspace : LibertyProjectsManager.getInstance().getLibertyWorkspaceFolders()) {
// checking for any changes in wlp user folder for gradle and maven
Path libertyUsrGradlePath = new File(workspace.getWorkspaceURI().getPath(),
"target/liberty/wlp/usr").toPath();
"target").toPath();
Path libertyUsrMavenPath = new File(workspace.getWorkspaceURI().getPath(),
"build/liberty/wlp/usr").toPath();
"build").toPath();
List<String> paths = Arrays.asList(libertyUsrMavenPath.toString(), libertyUsrGradlePath.toString());
try {
FileWatchService.getInstance()
Expand Down

0 comments on commit 264e38c

Please sign in to comment.