Skip to content

Commit

Permalink
supporting catkin packages
Browse files Browse the repository at this point in the history
  • Loading branch information
garaemon committed Nov 2, 2013
1 parent 2f0a338 commit e733cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function walk(directory, symlinks) {
var shortname = path.basename(file);
var dir = path.dirname(file);

if (shortname === 'manifest.xml') {
if (shortname === 'manifest.xml' || shortname === 'package.xml') {
this.emit('package', path.basename(dir), dir);
// There is no subpackages, so ignore anything under this directory
noSubDirs.concat(dir);
Expand Down

0 comments on commit e733cd2

Please sign in to comment.