From 46d3e865b94ac18be85957b5ea2fa3ef373882de Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sat, 16 Nov 2019 22:16:49 -0500 Subject: Fix is_manifest predicate to exclude cose.manifest files. * data/patches/fix-is_manifest.patch: New file. --- data/patches/fix-is_manifest.patch | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/patches/fix-is_manifest.patch (limited to 'data/patches') diff --git a/data/patches/fix-is_manifest.patch b/data/patches/fix-is_manifest.patch new file mode 100644 index 0000000..aaa0d69 --- /dev/null +++ b/data/patches/fix-is_manifest.patch @@ -0,0 +1,9 @@ +--- a/python/mozbuild/mozpack/chrome/manifest.py.orig 1980-01-01 18:59:51.000000000 -0500 ++++ b/python/mozbuild/mozpack/chrome/manifest.py 2019-11-16 22:14:47.497320339 -0500 +@@ -368,4 +368,5 @@ + Return whether the given path is that of a manifest file. + ''' + return path.endswith('.manifest') and not path.endswith('.CRT.manifest') \ +- and not path.endswith('.exe.manifest') ++ and not path.endswith('.exe.manifest') and not path.endswith('cose.manifest') ++ -- cgit v1.2.3