Skip to content

Commit 085ea2c

Browse files
committed
FIX: off by one error in fuzzy finder.
1 parent 31c80b4 commit 085ea2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ endif
9090

9191
.PHONY: fuzzy
9292
fuzzy:
93-
for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c ^msgid) $$file; done | grep -v ^0 | sort -gr
93+
for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c '#, fuzzy') $$file; done | grep -v ^0 | sort -gr

0 commit comments

Comments
 (0)