From 085ea2c4144196461211034562dffafb7835544d Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Tue, 8 May 2018 17:08:23 +0200 Subject: [PATCH] FIX: off by one error in fuzzy finder. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3bf76f0..0ab7990c 100644 --- a/Makefile +++ b/Makefile @@ -90,4 +90,4 @@ endif .PHONY: fuzzy fuzzy: - for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c ^msgid) $$file; done | grep -v ^0 | sort -gr + for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c '#, fuzzy') $$file; done | grep -v ^0 | sort -gr