Merge pull request #118 from abelsoares/enhancement/strapi-cli-extra-backtick

Remove extra backticks from strapi cli
This commit is contained in:
Pierre BURGY 2016-05-26 17:11:12 +02:00
commit 75eb3dd72f

View File

@ -56,8 +56,8 @@ module.exports = function () {
// Simply, log and exit the REPL in case of success.
success: function returnSuccess() {
logger.info('Migration file successfully generated at `' + path.resolve(scope.rootPath, 'data', 'migrations', scope.connection) + '``.');
logger.info('Seed file created at `' + path.resolve(scope.rootPath, 'data', 'seeds', scope.connection) + '``.');
logger.info('Migration file successfully generated at `' + path.resolve(scope.rootPath, 'data', 'migrations', scope.connection) + '`.');
logger.info('Seed file created at `' + path.resolve(scope.rootPath, 'data', 'seeds', scope.connection) + '`.');
logger.warn('This migration has been automatically generated.');
logger.warn('We strongly advise you to manually verify those information.');
process.exit(0);