Merge pull request #19 from cubedro/develop

Fixed go version command
This commit is contained in:
Marian OANCΞA 2015-03-20 04:08:53 +02:00
commit e549c378f8
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ if(process.env.NODE_ENV === 'production')
INSTANCE_NAME = shelljs.exec('ec2metadata --instance-id', {silent: true}).output;
}
ETH_VERSION = shelljs.exec((process.env.ETH_IMPLEMENTATION === 'go' ? 'ethereum -version' : 'eth -V'), {silent: true}).output;
ETH_VERSION = shelljs.exec((process.env.ETH_IMPLEMENTATION === 'go' ? 'ethereum version' : 'eth -V'), {silent: true}).output;
}
var socket = new Socket(process.env.WS_SERVER || 'ws://localhost:3000');