Félix Saparelli
Félix Saparelli
Windows 11 also supports tar.xz (among many other things, but that's the closest to 7z), so that's not really an argument for or against when choosing a format. We've chosen...
I think you're correct, yes. PR would be approciated.
Not opposed, would accept a PR with the `os-name` variant :)
I'm fine with API breaks, go for it.
Fix released in 2.2.0
That's super weird, thanks for the short reproduction!
Okay, this is quite odd but annoyingly I ~~can't~~ might not be able to do anything about it, because I only ever get the symlink's event, not the original path's....
With `strace -f -e inotify_add_watch`, here's what watchexec watches: ``` [pid 3652996] inotify_add_watch(9, "/home/code/rust/foo", IN_MODIFY|IN_ATTRIB|IN_CLOSE_WRITE|IN_MOVED_FROM|IN_MOVED_TO|IN_CREATE|IN_DELETE|IN_DELETE_SELF|IN_MOVE_SELF) = 1 [pid 3652996] inotify_add_watch(9, "/home/code/rust/foo/a", IN_MODIFY|IN_ATTRIB|IN_CLOSE_WRITE|IN_MOVED_FROM|IN_MOVED_TO|IN_CREATE|IN_DELETE) = 2 [pid 3652996] inotify_add_watch(9, "/home/code/rust/foo/z", IN_MODIFY|IN_ATTRIB|IN_CLOSE_WRITE|IN_MOVED_FROM|IN_MOVED_TO|IN_CREATE|IN_DELETE) =...
As a workaround, polling mode does work. Also watchexec shouldn't even be watching `node_modules` in the first place, as it's ignored, so something's weird here too. Forcing it to watch...
Yeah, but canonicalize does I/O, which we don't really want at that point. If doing the canonicalize in notify fixes it, then perhaps the solution is to do it in...