From 3cbc97885f5f3b3e982d2c2ab52108acc124492e Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 19 Aug 2016 14:38:24 +0100 Subject: [PATCH] MANIFEST.in: use correct glob pattern to only include files under 'testdata' subfolders --- MANIFEST.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 124299f37..538df29f3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,6 +9,6 @@ include Lib/fontTools/ttLib/tables/table_API_readme.txt include *requirements.txt include tox.ini -recursive-include Lib/fontTools *testdata/*.ttx *testdata/*.otx *testdata/*.fea -recursive-include Lib/fontTools *testdata/*.lwfn *testdata/*.pfa *testdata/*.pfb -recursive-include Lib/fontTools *testdata/*.xml *testdata/*.designspace +recursive-include Lib/fontTools testdata/*.ttx testdata/*.otx testdata/*.fea +recursive-include Lib/fontTools testdata/*.lwfn testdata/*.pfa testdata/*.pfb +recursive-include Lib/fontTools testdata/*.xml testdata/*.designspace