[
https://issues.apache.org/jira/browse/CB-5990?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Andrew Grieve resolved CB-5990.
-------------------------------
Resolution: Fixed
Assignee: Andrew Grieve
Fixed in 0.19.1-dev
> findPlugins function doesn't honor its comment
> ----------------------------------------------
>
> Key: CB-5990
> URL: https://issues.apache.org/jira/browse/CB-5990
> Project: Apache Cordova
> Issue Type: Bug
> Components: Plugman
> Affects Versions: 3.3.0
> Reporter: Josh Soref
> Assignee: Andrew Grieve
>
> This is the code:
> {quote}
> // List the directories in the path, ignoring any files, .svn, etc.
> findPlugins:function(plugins_dir) {
> var plugins = [],
> stats;
> if (fs.existsSync(plugins_dir)) {
> plugins = fs.readdirSync(plugins_dir).filter(function (fileName) {
> stats = fs.statSync(path.join(plugins_dir, fileName));
> return fileName != '.svn' && fileName != 'CVS' &&
> stats.isDirectory();
> {quote}
> It will return .hg, .git, .bzr, ...
> There's no reason to only special case .svn and CVS, but to not mention CVS
> in the comment.
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)