1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

fswatch: fix flag (#15722)

The `fswatch` command supports the "Removed" event flag, not the
"Deleted" event flag.

---------

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
This commit is contained in:
Harrison McCullough 2025-02-11 09:53:22 -07:00 committed by GitHub
parent 376068fff9
commit 6af0f39335
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,4 +17,4 @@
- Filter by event type:
`fswatch --event {{Updated|Deleted|Created}} {{path/to/directory}} | xargs -n 1 {{bash_command}}`
`fswatch --event {{Updated|Removed|Created|...}} {{path/to/directory}} | xargs -n 1 {{bash_command}}`