Skip to content
Snippets Groups Projects
Commit 5a37b5ae authored by michael.minelli's avatar michael.minelli
Browse files

Step 8 => Do not use exit code for success state but result file success var

parent f71ba88e
No related branches found
No related tags found
No related merge requests found
Pipeline #25730 passed
......@@ -156,7 +156,7 @@ import ArchiveHelper from './shared/helpers/ArchiveHelper';
// Step 8: Exit with container exit code
const finalLogGlobalResult = `${ chalkInfo('Global result') } : ${ containerExitCode === 0 ? chalkSuccess('✅ Success') : chalkFailure('❌ Failure') }`;
const finalLogGlobalResult = `${ chalkInfo('Global result') } : ${ validationResults.results!.success ? chalkSuccess('✅ Success') : chalkFailure('❌ Failure') }`;
const finalLogExecutionExitCode = `${ chalkInfo('Execution exit code') } : ${ (containerExitCode == 0 ? chalkSuccess : chalkError)(containerExitCode) }`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment