aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-02-10 07:38:16 +0000
committerMatthew Lemon <y@yulqen.org>2024-02-10 07:38:16 +0000
commitc02745b2169a2d3dc2c5c431a48d093b6e177fb4 (patch)
treec47bef001505111c53b7c139d190061be694c76a
parentbd029f8364c1044f9f2b1dae03d102d9b7cefd68 (diff)
Fixes the search for syncthing conflicts.
Previously, this command would search for "sync" but now it searches for "sync-conflict".
-rw-r--r--fish2024/functions/lookforsyncerrors.fish2
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