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
Fix file permissions from read-only to read-write (0o444 -> 0o644) (#6)
## Summary
- Change file permission bits from `0o444` (read-only for all) to
`0o644` (read-write for owner, read-only for group/others) in
`src/fuse_fs.rs`
## Test plan
- [ ] Mount the filesystem and verify files are accessible with the
correct permissions (`-rw-r--r--`)