diff options
Diffstat (limited to 'src/omc_main.c')
-rw-r--r-- | src/omc_main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/omc_main.c b/src/omc_main.c index 3ee3a00..170f925 100644 --- a/src/omc_main.c +++ b/src/omc_main.c @@ -586,6 +586,11 @@ int main(int argc, char *argv[]) { msg(OMC_MSG_L1 | OMC_MSG_WARN, "Artifact uploading is disabled. deploy:artifactory is not configured\n"); } + msg(OMC_MSG_L1, "Dumping metadata\n"); + if (delivery_dump_metadata(&ctx)) { + msg(OMC_MSG_L1 | OMC_MSG_ERROR, "Metadata dump failed\n"); + } + msg(OMC_MSG_L1, "Cleaning up\n"); delivery_free(&ctx); globals_free(); |