Handling relative paths

Handling relative paths when loopback's server.js file is run from different directory than the project.
This commit is contained in:
Ketan Patil 2018-07-29 00:41:54 +05:30 committed by GitHub
parent 21d6b0d60c
commit 098312ab71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,9 @@ 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);
}
this.root = options.root;
var exists = fs.existsSync(this.root);
if (!exists) {