Changeset 63422 for branches/7.0/tools/local-env/scripts/docker.js
- Timestamp:
- 09/01/2026 05:50:10 PM (27 hours ago)
- Location:
- branches/7.0
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
tools/local-env/scripts/docker.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/7.0
- Property svn:mergeinfo changed
/trunk merged: 62871,63416
- Property svn:mergeinfo changed
-
branches/7.0/tools/local-env/scripts/docker.js
r61196 r63422 39 39 ); 40 40 41 process.exit( returns.status ); 41 if ( returns.error ) { 42 console.error( `Could not run Docker Compose. ${ returns.error.message }` ); 43 } else if ( returns.signal && returns.signal !== 'SIGINT' ) { 44 console.error( `Docker Compose was terminated by ${ returns.signal }.` ); 45 } 46 47 // `status` is null when Docker could not be spawned at all, or was killed by a signal. SIGINT is 48 // how a long-running command such as `env:logs` is normally ended, so it is not a failure worth an 49 // npm error block. Every other signal means the command was killed before it finished. 50 process.exit( returns.signal === 'SIGINT' ? 0 : ( returns.status ?? 1 ) );
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)