Skip to content
This repository has been archived by the owner on Apr 18, 2019. It is now read-only.

Commit

Permalink
[CB-4734] Fixed issue where plugins are not added to frameworkModules
Browse files Browse the repository at this point in the history
  Reviewed By: Jeffrey Heifetz <jheifetz@blackberry.com>
  Tested By: Rowell Cruz <rcruz@blackberry.com>
  • Loading branch information
DanielAudino authored and Jeffrey Heifetz committed Sep 3, 2013
1 parent d7d78a8 commit 29ba97c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -109,7 +109,7 @@ function getModulesArray(dest, files, baseDir) {
file = path.resolve(baseDir, file);

if (!fs.statSync(file).isDirectory()) {
if (baseDir !== dest.EXT && !isExcluded(file)) {
if (!isExcluded(file)) {
modulesList.push({name: path.relative(path.normalize(dest.CHROME), file).replace(/\\/g, "/"), file: file});
}
}
Expand Down

0 comments on commit 29ba97c

Please sign in to comment.