We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99ce1e0 commit 77ed226Copy full SHA for 77ed226
tools/local-env/scripts/docker.js
@@ -12,9 +12,9 @@ if (process.argv.includes('--coverage-html')) {
12
process.env.LOCAL_PHP_XDEBUG_MODE = 'coverage';
13
}
14
15
-// This try-catch prevents the superfluous Node.js debugging information from being shown if the command fails
+// This try-catch prevents the superfluous Node.js debugging information from being shown if the command fails.
16
try {
17
- // Execute any docker compose command passed to this script.
+ // Execute any Docker compose command passed to this script.
18
execSync( 'docker compose ' + composeFiles + ' ' + process.argv.slice( 2 ).join( ' ' ), { stdio: 'inherit' } );
19
} catch ( error ) {
20
process.exit( 1 );
0 commit comments