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';
95
95
const authToken = neo4j . auth . basic ( username , password ) ;
96
96
97
97
const neoCtrlVersionParam = '-e' ;
98
- const defaultNeo4jVersion = '3.1.2 ' ;
98
+ const defaultNeo4jVersion = '3.1.3 ' ;
99
99
const defaultNeoCtrlArgs = `${ neoCtrlVersionParam } ${ defaultNeo4jVersion } ` ;
100
100
101
101
function neo4jCertPath ( dir ) {
@@ -237,8 +237,8 @@ class RunCommandResult {
237
237
238
238
constructor ( spawnResult ) {
239
239
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 ( ) ;
242
242
this . fullOutput = 'STDOUT:\n\t' + this . stdout + '\n' +
243
243
'STDERR:\n\t' + this . stderr + '\n' +
244
244
'EXIT CODE:\n\t' + spawnResult . status + '\n' +
You can’t perform that action at this time.
0 commit comments