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

Commit

Permalink
Version bump, README discrepancy fix, point release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan McGrath committed Feb 23, 2012
1 parent caaee2c commit f079b39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wrench",
"description": "Recursive filesystem (and other) operations that Node *should* have.",
"version": "1.3.6",
"version": "1.3.7",
"author": "Ryan McGrath <[email protected]>",

"repository": {
Expand Down
6 changes: 1 addition & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,7 @@ while(f.hasNextLine()) {
// Recursively read directories contents
var files = [];
wrench.readdirRecursive('my_directory_name', function(error, curFiles) {
if (files) {
files = files.concat(curFiles);
} else {
// files list contains all the directory contents now
}
// curFiles is what you want
});

```
Expand Down

0 comments on commit f079b39

Please sign in to comment.