Skip to content

Commit

Permalink
馃摉 Update Ghost bootstrap logs (#8531)
Browse files Browse the repository at this point in the history
refs #7421

Change Alpha wording to beta wording for the bootstrap logs.
  • Loading branch information
kirrg001 authored and kevinansfield committed Jun 8, 2017
1 parent adfb848 commit ce7d731
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/server/ghost-server.js
Expand Up @@ -193,14 +193,14 @@ GhostServer.prototype.logStartMessages = function () {
// Startup & Shutdown messages
if (config.get('env') === 'production') {
console.log(
chalk.red('Currently running Ghost 1.0.0 Alpha, this is NOT suitable for production! \n'),
chalk.red('Currently running Ghost 1.0.0 Beta, this is NOT suitable for production! \n'),
chalk.white('Please switch to the stable branch. \n'),
chalk.white('More information on the Ghost 1.0.0 Alpha at: ') + chalk.cyan('https://support.ghost.org/v1-0-alpha') + '\n',
chalk.white('More information on the Ghost 1.0.0 Beta at: ') + chalk.cyan('https://dev.ghost.org/1-0-0-beta') + '\n',
chalk.gray(i18n.t('notices.httpServer.ctrlCToShutDown'))
);
} else {
console.log(
chalk.blue('Welcome to the Ghost 1.0.0 Alpha - this version of Ghost is for development only.')
chalk.yellow('Welcome to the Ghost 1.0.0 Beta - this version of Ghost is for development only.')
);
console.log(
chalk.green(i18n.t('notices.httpServer.ghostIsRunningIn', {env: config.get('env')})),
Expand Down

0 comments on commit ce7d731

Please sign in to comment.