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
As reported in nodejs/node#35853, there is an bug where fs.stat() can fail due to lack of permissions on Windows (when it shouldn't). We ran into this issue in this run for bevy-cli.
A lack of permissions shouldn't cause the entire job to fail. cargo-sweep operates on a best-effort basis, and should just skip the file without permissions instead of erroring.
The text was updated successfully, but these errors were encountered:
This action uses
fs.stat()
to find information about files in thetarget
directory that may be purged:cargo-sweep/src/post.ts
Line 112 in f603cca
As reported in nodejs/node#35853, there is an bug where
fs.stat()
can fail due to lack of permissions on Windows (when it shouldn't). We ran into this issue in this run forbevy-cli
.A lack of permissions shouldn't cause the entire job to fail.
cargo-sweep
operates on a best-effort basis, and should just skip the file without permissions instead of erroring.The text was updated successfully, but these errors were encountered: