Fix the message

This commit is contained in:
Raymond Feng 2013-08-20 16:14:27 -07:00
parent 195b9b0be4
commit cf07563414
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ DataSource.prototype.setup = function(name, settings) {
}
connector = require(name);
} catch (e) {
return console.log('\nWARNING: LoopbackData connector "' + name + '" is not installed,\nso your models would not work, to fix run:\n\n npm install loopback-connector-' + name, '\n');
return console.log('\nWARNING: LoopbackData connector "' + name + '" is not installed,\nso your models would not work, to fix run:\n\n npm install ' + name, '\n');
}
}
}