File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -127,10 +127,14 @@ var createSuccess = function () {
127
127
128
128
var npmProcess = spawn ( npmCommand , [ 'install' ] , options ) ;
129
129
130
- npmProcess . stderr . on ( 'data' , function ( data ) {
130
+ npmProcess . stdout . on ( 'data' , function ( data ) {
131
131
process . stdout . write ( data ) ;
132
132
} ) ;
133
-
133
+
134
+ npmProcess . stderr . on ( 'data' , function ( data ) {
135
+ process . stderr . write ( data ) ;
136
+ } ) ;
137
+
134
138
npmProcess . on ( 'close' , function ( code ) {
135
139
if ( code ) {
136
140
errorMessage ( 'Failed to install npm dependencies. Exited with code ' + code + '.' ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " socketcluster" ,
3
3
"description" : " SocketCluster - A Highly parallelized WebSocket server cluster to make the most of multi-core machines/instances." ,
4
- "version" : " 0.9.53-pre.1 " ,
4
+ "version" : " 0.9.53" ,
5
5
"homepage" : " https://github.com/topcloud/socketcluster" ,
6
6
"contributors" : [
7
7
{
You can’t perform that action at this time.
0 commit comments