Skip to content

Commit

Permalink
fix: suppress read-only file-deletion errors
Browse files Browse the repository at this point in the history
much of Arch Linux’s `/proc` is `-size 0`, but also read-only, even
for root

Signed-off-by: Lucas Larson <[email protected]>
  • Loading branch information
LucasLarson committed May 29, 2024
1 parent ce64024 commit 72029c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ command -p -- find -- . \
! -name '__init__.py' \
! -name 'favicon.*' \
-type f \
-delete
-delete 2>/dev/null

# if the shell can be changed and
# if zsh is available, then replace bash, ash, and sh with zsh in `/etc/passwd`
Expand Down

0 comments on commit 72029c3

Please sign in to comment.