This is a patch release that fixes a permissions bug on Windows. Specifically, some Windows runners were running into the following error:
Error: EPERM: operation not permitted, stat 'C:\project\target\file'
This was due to an bug in NodeJS (specifically libuv
) when calling fs.stat()
on a file that it does not have permissions for.
This release silences this error by skipping files that fs.stat()
fails on. These files will not be deleted, and cargo-sweep
will log a message that they have been skipped.
Full Changelog: v2.1.0...v2.1.1