diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-13 00:10:58 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-13 00:10:58 -0500 |
commit | b1018040a1b5a9b6351050fd4029b9bd4851b687 (patch) | |
tree | 403bce3ced8bf48b345d42fbf8f733d69c15778a | |
parent | 2ba00882b7f990d839f146c8032d4277628cbb0b (diff) | |
download | stasis-b1018040a1b5a9b6351050fd4029b9bd4851b687.tar.gz |
Disable dumping environment variables in verbose mode (for now)
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -273,14 +273,14 @@ int main(int argc, char *argv[], char *arge[]) { runtime_apply(ctx.runtime.environ); snprintf(env_name, sizeof(env_name_testing) - 1, "%s", ctx.info.release_name); - snprintf(env_name_testing, sizeof(env_name) - 1, "%s_test", env_name); + snprintf(env_name_testing, sizeof(env_name) - 1, "%s-test", env_name); msg(OMC_MSG_L1, "Overview\n"); delivery_meta_show(&ctx); delivery_conda_show(&ctx); delivery_tests_show(&ctx); if (globals.verbose) { - delivery_runtime_show(&ctx); + //delivery_runtime_show(&ctx); } msg(OMC_MSG_L1, "Conda setup\n"); |