You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If file is specified in the current working dir to watch like: "foo.edn", then process will not watch this group at all. I think this is because .getParentFile is called on this, which will return null. This would work if you first did .getCanonicalFile, as it would be the full path which does have a parent.
The text was updated successfully, but these errors were encountered:
If file is specified in the current working dir to watch like:
"foo.edn"
, then process will not watch this group at all. I think this is because.getParentFile
is called on this, which will return null. This would work if you first did.getCanonicalFile
, as it would be the full path which does have a parent.The text was updated successfully, but these errors were encountered: