Skip to content

Commit

Permalink
Issue #11572 add check for isDeployable when hot deploy file changes
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Mar 26, 2024
1 parent 9defd5d commit 442cdf5
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -519,4 +519,11 @@ protected void pathAdded(Path path) throws Exception
if (isDeployable(path))
super.pathAdded(path);
}

@Override
protected void pathChanged(Path path) throws Exception
{
if (isDeployable(path))
super.pathChanged(path);
}
}

0 comments on commit 442cdf5

Please sign in to comment.