Closed
Bug 713510
Opened 14 years ago
Closed 9 years ago
do not stat contents of source control directories in extensions directory
Categories
(Toolkit :: Add-ons Manager, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: amirjanyan, Unassigned)
Details
after Bug 594058 files in extensions directory are statted too aggressively
making startup slow if there are additional folders from version control or finder .DS_Store
skipping directories with name starting by . or _ will help developers without performance regression in common case when only .xpi-s are installed
http://mxr.mozilla.org/mozilla-central/source/toolkit/mozapps/extensions/XPIProvider.jsm#1315
should become if (aFile.isDirectory() && aFile.leafName[0] != ".") {
Comment 1•9 years ago
|
||
File like .DS_Store and version control shouldn't be in an add-on, I don't think the addon manager should be skipping dot-files altogether in any case.
Status: UNCONFIRMED → RESOLVED
Closed: 9 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•