From 4798135aec35ef84baa43dcc38a3681e490c6c78 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 16 Jun 2026 11:37:28 -0400 Subject: Store conda installation prefix in capabilities structure --- src/lib/delivery/delivery_conda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/delivery') diff --git a/src/lib/delivery/delivery_conda.c b/src/lib/delivery/delivery_conda.c index e879d1d..12eddb7 100644 --- a/src/lib/delivery/delivery_conda.c +++ b/src/lib/delivery/delivery_conda.c @@ -146,7 +146,7 @@ void delivery_conda_enable(struct Delivery *ctx, char *conda_install_dir) { guard_free(conda_version); } - if (conda_capable(&ctx->conda.capabilities)) { + if (conda_capable(&ctx->conda.capabilities, ctx->storage.conda_install_prefix)) { SYSERROR("Conda capability check failed"); exit(1); } -- cgit