From 5d33d1c43e3a351176476fea6751d826a2a9055a Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 10 Apr 2024 08:59:59 -0400 Subject: Fix new context name --- src/deliverable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/deliverable.c b/src/deliverable.c index 715845c..e2d2908 100644 --- a/src/deliverable.c +++ b/src/deliverable.c @@ -1077,8 +1077,8 @@ int delivery_install_packages(struct Delivery *ctx, char *conda_install_dir, cha return 0; } - if (delivery->conda.installer_version) { void delivery_get_installer_url(struct Delivery *ctx, char *result) { + if (ctx->conda.installer_version) { // Use version specified by configuration file sprintf(result, "%s/%s-%s-%s-%s.sh", ctx->conda.installer_baseurl, ctx->conda.installer_name, -- cgit