File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11/* jshint node:true */
22
3- const dotenv = require ( 'dotenv' ) ;
3+ const dotenv = require ( 'dotenv' ) ;
44const dotenvExpand = require ( 'dotenv-expand' ) ;
55const { spawnSync } = require ( 'child_process' ) ;
66const local_env_utils = require ( './utils' ) ;
@@ -9,7 +9,7 @@ dotenvExpand.expand( dotenv.config() );
99
1010const composeFiles = local_env_utils . get_compose_files ( ) ;
1111
12- if ( process . argv . includes ( '--coverage-html' ) ) {
12+ if ( process . argv . includes ( '--coverage-html' ) ) {
1313 process . env . LOCAL_PHP_XDEBUG = 'true' ;
1414 process . env . LOCAL_PHP_XDEBUG_MODE = 'coverage' ;
1515}
2121 'docker' ,
2222 [
2323 'compose' ,
24- ...composeFiles . map ( ( composeFile ) => [ '-f' , composeFile ] ) . flat ( ) ,
25- ...process . argv . slice ( 2 )
24+ ...composeFiles
25+ . map ( ( composeFile ) => [ '-f' , composeFile ] )
26+ . flat ( ) ,
27+ ...process . argv . slice ( 2 ) ,
2628 ] ,
2729 { stdio : 'inherit' }
2830 ) ;
You can’t perform that action at this time.
0 commit comments