Review fixes

This commit is contained in:
Kieran Sedgwick 2014-11-06 10:31:45 -05:00
parent 3178ad9a45
commit a05faf0b2a
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,8 @@
}
function shell(options) {
return new (fs()).Shell(options);
var _fs = fs();
return new _fs.Shell(options);
}
function cleanup(callback) {