diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-08-29 12:57:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 12:57:43 -0400 |
commit | 1cb4d2a97c83549bc436412ad49788d30213f7c0 (patch) | |
tree | 93d3c7b0174773cab308fd75419944c1c09b4665 | |
parent | 5ff95541df361856c4a86ab73dc17627115a6e8e (diff) | |
download | stasis-1cb4d2a97c83549bc436412ad49788d30213f7c0.tar.gz |
Bug fix: CONDA_ENV_DEFAULT should be CONDA_DEFAULT_ENV (#40)
-rw-r--r-- | src/delivery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delivery.c b/src/delivery.c index 3a713b5..756a716 100644 --- a/src/delivery.c +++ b/src/delivery.c @@ -1788,7 +1788,7 @@ void delivery_tests_run(struct Delivery *ctx) { puts(cmd); char runner_cmd[0xFFFF] = {0}; - sprintf(runner_cmd, "set +x\nsource %s/etc/profile.d/conda.sh\nsource %s/etc/profile.d/mamba.sh\nmamba activate ${CONDA_ENV_DEFAULT}\n\n%s\n", + sprintf(runner_cmd, "set +x\nsource %s/etc/profile.d/conda.sh\nsource %s/etc/profile.d/mamba.sh\n\nmamba activate ${CONDA_DEFAULT_ENV}\n\n%s\n", ctx->storage.conda_install_prefix, ctx->storage.conda_install_prefix, cmd); |