Skip to content

Commit eafe17d

Browse files
committed
Output not running correctly
1 parent 8e7c659 commit eafe17d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/cli.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ for(var i = 0; i < process.argv.length; i++) {
66
switch(process.argv[i].toLowerCase()) {
77
case 'native':
88
if (semver.gte(process.version, '4.0.0')) {
9-
console.log('Not running native in node < v4.0.0')
109
config.native = true;
10+
} else {
11+
console.log('Not running native in node < v4.0.0')
1112
}
1213
break;
1314
case 'binary':

0 commit comments

Comments
 (0)