From ce7d731d8fb040b1c0b7a609129f3bd6d07878ad Mon Sep 17 00:00:00 2001 From: Katharina Irrgang Date: Thu, 8 Jun 2017 21:32:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=96=20=20Update=20Ghost=20bootstrap=20?= =?UTF-8?q?logs=20(#8531)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs #7421 Change Alpha wording to beta wording for the bootstrap logs. --- core/server/ghost-server.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/server/ghost-server.js b/core/server/ghost-server.js index 65e665b010..3592ee723a 100644 --- a/core/server/ghost-server.js +++ b/core/server/ghost-server.js @@ -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')})),