Skip to content

Commit

Permalink
Remove io.js reference from startup-check
Browse files Browse the repository at this point in the history
Refs #6643
  • Loading branch information
jaswilli committed Apr 8, 2016
1 parent 5def001 commit c7448c4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/server/utils/startup-check.js
Expand Up @@ -33,8 +33,7 @@ checks = {
var semver = require('semver');

if (process.env.GHOST_NODE_VERSION_CHECK !== 'false' &&
!semver.satisfies(process.versions.node, packages.engines.node) &&
!semver.satisfies(process.versions.node, packages.engines.iojs)) {
!semver.satisfies(process.versions.node, packages.engines.node)) {
console.error('\x1B[31mERROR: Unsupported version of Node');
console.error('\x1B[31mGhost needs Node version ' + packages.engines.node +
' you are using version ' + process.versions.node + '\033[0m\n');
Expand Down

0 comments on commit c7448c4

Please sign in to comment.