hawk
hawk copied to clipboard
Silently fails for file in cwd
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.