Hi Jakub,
Seems like the path is resolved incorrectly for some reason. I added some more logging to the permissionCheckAgent. The previous link contains the updated version.
It is possible that some property is set incorrectly or File.getAbsolutePath() fails for some reason. What version of windows are you using?
EDIT: I was able to reproduce the issue. Make sure you don’t have quotes in the REBEL_BASE.
E.g. if you have the line
set REBEL_BASE=“C:\Users\Meelis\.jrebel“
This is INCORRECT, you need to remove the quotes or they will be part of the variable and the path is resolved incorrectly.
The correct way would be:
set REBEL_BASE=C:\Users\Meelis\.jrebel