Going to one level up in directory structure

This commit is contained in:
Ketan Patil 2018-07-29 00:50:49 +05:30 committed by GitHub
parent 098312ab71
commit 696388bb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ module.exports.createClient = function(options) {
function FileSystemProvider(options) {
options = options || {};
if (!path.isAbsolute(options.root)) {
options.root = path.join(path.dirname(require.main.filename), options.root);
options.root = path.join(path.dirname(path.dirname(require.main.filename)), options.root);
}
this.root = options.root;
var exists = fs.existsSync(this.root);