[Pkg-mozext-commits] [adblock-plus] 246/464: Fixed regression from recent change: don't replace bootstrap.js if the extension defines it explicitly

David Prévot taffit at moszumanska.debian.org
Tue Jul 22 20:44:21 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository adblock-plus.

commit b3bd12b0a2e1321b1952389a10100cdca5d614be
Author: Wladimir Palant <trev at adblockplus.org>
Date:   Mon Jun 18 10:43:03 2012 +0200

    Fixed regression from recent change: don't replace bootstrap.js if the extension defines it explicitly
---
 packager.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packager.py b/packager.py
index 4b92455..18b81d1 100644
--- a/packager.py
+++ b/packager.py
@@ -52,7 +52,7 @@ def getXPIFiles(baseDir):
   for file in ('components', 'modules', 'lib', 'resources', 'defaults', 'chrome.manifest', 'icon.png', 'icon64.png'):
     yield os.path.join(baseDir, file)
   for file in os.listdir(baseDir):
-    if file.endswith('.xml'):
+    if file.endswith('.js') or file.endswith('.xml'):
       yield os.path.join(baseDir, file)
 
 def getIgnoredFiles(params):

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/adblock-plus.git



More information about the Pkg-mozext-commits mailing list