0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Change message when unsupported node version is used

no issue
- changed ‚the latest‘ to ‚a supported‘

Reason: the user is asked to update to the **latest** version of
node.js when v0.11.* is installed but v0.10.* is required
This commit is contained in:
Sebastian Gierlinger 2013-12-12 17:47:35 +01:00
parent f3923c463e
commit acce957f7e

View file

@ -155,7 +155,7 @@ function setup(server) {
packageInfo.engines.node.yellow,
"you are using version".red,
process.versions.node.yellow,
"\nPlease go to http://nodejs.org to get the latest version".green
"\nPlease go to http://nodejs.org to get a supported version".green
);
process.exit(0);