Merge pull request #873 from strongloop/update-errormsg

Update error message for missing connector
This commit is contained in:
Gunjan Pandya 2016-03-15 17:27:18 -04:00
commit f1c437363c
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ DataSource._resolveConnector = function (name, loader) {
var error = null;
if (!connector) {
error = util.format('\nWARNING: LoopBack connector "%s" is not installed ' +
'as any of the following modules:\n\n %s\n\nTo fix, run:\n\n npm install %s\n',
'as any of the following modules:\n\n %s\n\nTo fix, run:\n\n npm install %s --save\n',
name, names.join('\n'), names[names.length - 1]);
}
return {