diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-10 08:59:59 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-10 08:59:59 -0400 |
commit | 5d33d1c43e3a351176476fea6751d826a2a9055a (patch) | |
tree | 320ae34d4b39a9ef8062b5a310376338e2b90f6b | |
parent | 937157e10ca2af0a1a6da49805a7d01aa5a271bc (diff) | |
download | stasis-5d33d1c43e3a351176476fea6751d826a2a9055a.tar.gz |
Fix new context name
-rw-r--r-- | src/deliverable.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |