From 8bb5d96b475ede86193dfab398535d0764e6012d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 2 Jun 2026 13:37:35 -0400 Subject: Replace string functions (comment future code) --- src/lib/delivery/delivery_install.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/lib/delivery/delivery_install.c b/src/lib/delivery/delivery_install.c index ba93f71..bb99014 100644 --- a/src/lib/delivery/delivery_install.c +++ b/src/lib/delivery/delivery_install.c @@ -377,11 +377,11 @@ int delivery_install_packages(struct Delivery *ctx, char *conda_install_dir, cha } if (INSTALL_PKG_CONDA_DEFERRED & type) { - if (ctx->conda.capabilities.missing_use_local) { - safe_strncat(command_base, " -c local", sizeof(command_base)); - } else { + //if (ctx->conda.capabilities.missing_use_local) { + // safe_strncat(command_base, " -c local", sizeof(command_base)); + //} else { safe_strncat(command_base, " --use-local", sizeof(command_base)); - } + //} } else if (INSTALL_PKG_PIP_DEFERRED & type) { // Don't change the baseline package set unless we're working with a // new build. Release candidates will need to keep packages as stable -- cgit