From c02745b2169a2d3dc2c5c431a48d093b6e177fb4 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sat, 10 Feb 2024 07:38:16 +0000 Subject: Fixes the search for syncthing conflicts. Previously, this command would search for "sync" but now it searches for "sync-conflict". --- fish2024/functions/lookforsyncerrors.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fish2024') 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 -- cgit v1.2.3