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:
parent
21d6b0d60c
commit
098312ab71
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue