From a01bcd6be23559da7438a747b629f93e3ab8394a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Wed, 29 Jan 2014 23:44:49 +0100 Subject: [PATCH] Don't use find in fix-ellipsis --- tools/fix-ellipsis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fix-ellipsis.sh b/tools/fix-ellipsis.sh index a00e26859..b3f02fb85 100755 --- a/tools/fix-ellipsis.sh +++ b/tools/fix-ellipsis.sh @@ -2,4 +2,4 @@ # Fix TypographyEllipsis programmatically -find res/values* -name '*.xml' -type f | xargs -n 1 sed -i 's/\.\.\./…/g' +sed -i 's/\.\.\./…/g' res/values*/*.xml