aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-08-29 12:57:43 -0400
committerGitHub <noreply@github.com>2024-08-29 12:57:43 -0400
commit1cb4d2a97c83549bc436412ad49788d30213f7c0 (patch)
tree93d3c7b0174773cab308fd75419944c1c09b4665
parent5ff95541df361856c4a86ab73dc17627115a6e8e (diff)
downloadstasis-1cb4d2a97c83549bc436412ad49788d30213f7c0.tar.gz
Bug fix: CONDA_ENV_DEFAULT should be CONDA_DEFAULT_ENV (#40)
-rw-r--r--src/delivery.c2
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);