diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-10 07:38:16 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-10 07:38:16 +0000 |
commit | c02745b2169a2d3dc2c5c431a48d093b6e177fb4 (patch) | |
tree | c47bef001505111c53b7c139d190061be694c76a /fish2024/functions | |
parent | bd029f8364c1044f9f2b1dae03d102d9b7cefd68 (diff) |
Fixes the search for syncthing conflicts.
Previously, this command would search for "sync" but now it searches for
"sync-conflict".
Diffstat (limited to 'fish2024/functions')
-rw-r--r-- | fish2024/functions/lookforsyncerrors.fish | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fish2024/functions/lookforsyncerrors.fish b/fish2024/functions/lookforsyncerrors.fish index d2fdefb..55131fc 100644 --- a/fish2024/functions/lookforsyncerrors.fish +++ b/fish2024/functions/lookforsyncerrors.fish @@ -1,4 +1,4 @@ function lookforsyncerrors --wraps='find . -iname "*sync*"' --description 'alias lookforsyncerrors=find . -iname "*sync*"' - find . -iname "*sync*" $argv + find . -iname "*sync-conflict*" $argv end |