Skip to content

Commit

Permalink
Update package-task to work with newest Jake.
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Jun 11, 2012
1 parent 3747416 commit 7122527
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Jakefile
Expand Up @@ -205,7 +205,7 @@ namespace('doc', function () {
}, {async: true});

task('clobber', function () {
var cmd = 'rm -fr ./doc/*';
var cmd = 'rm -fr ./doc/**';
jake.exec([cmd], function () {
console.log('Clobbered old docs.');
complete();
Expand Down Expand Up @@ -242,11 +242,11 @@ var p = new jake.NpmPublishTask('geddy', [
, 'Jakefile'
, 'README.md'
, 'package.json'
, 'bin/*'
, 'deps/*'
, 'lib/*'
, 'templates/*'
, 'test/*'
, 'bin/**'
, 'deps/**'
, 'lib/**'
, 'templates/**'
, 'test/**'
]);

// Don't create the package-tasks when being called as a generator
Expand Down

0 comments on commit 7122527

Please sign in to comment.