File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ const password = 'password';
9595const authToken = neo4j . auth . basic ( username , password ) ;
9696
9797const neoCtrlVersionParam = '-e' ;
98- const defaultNeo4jVersion = '3.1.2 ' ;
98+ const defaultNeo4jVersion = '3.1.3 ' ;
9999const defaultNeoCtrlArgs = `${ neoCtrlVersionParam } ${ defaultNeo4jVersion } ` ;
100100
101101function neo4jCertPath ( dir ) {
@@ -237,8 +237,8 @@ class RunCommandResult {
237237
238238 constructor ( spawnResult ) {
239239 this . successful = spawnResult . status === 0 ;
240- this . stdout = ( spawnResult . stdout . toString ( ) || '' ) . trim ( ) ;
241- this . stderr = ( spawnResult . stderr . toString ( ) || '' ) . trim ( ) ;
240+ this . stdout = ( spawnResult . stdout || '' ) . toString ( ) . trim ( ) ;
241+ this . stderr = ( spawnResult . stderr || '' ) . toString ( ) . trim ( ) ;
242242 this . fullOutput = 'STDOUT:\n\t' + this . stdout + '\n' +
243243 'STDERR:\n\t' + this . stderr + '\n' +
244244 'EXIT CODE:\n\t' + spawnResult . status + '\n' +
You can’t perform that action at this time.
0 commit comments