Skip to content

Commit 793be5e

Browse files
author
James Halliday
committed
bump for no more chmods
1 parent ba450d6 commit 793be5e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name" : "mkdirp",
33
"description" : "Recursively mkdir, like `mkdir -p`",
4-
"version" : "0.2.2",
4+
"version" : "0.3.0",
55
"author" : "James Halliday <[email protected]> (http://substack.net)",
66
"main" : "./index",
77
"keywords" : [

test/chmod.js

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ test('chmod', function (t) {
3232
fs.stat(file, function (er, stat) {
3333
t.ifError(er, 'should exist');
3434
t.ok(stat && stat.isDirectory(), 'should be directory');
35-
t.equal(stat && stat.mode & 0777, mode, 'should be 0755');
3635
t.end();
3736
});
3837
});

0 commit comments

Comments
 (0)