aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-06-02 13:37:35 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-06-02 13:37:35 -0400
commit8bb5d96b475ede86193dfab398535d0764e6012d (patch)
tree3da1624ac88f8790482cb67322ac42f5d7415ee6
parent745955b7e2c81165d206d464e05b6bc7545cdff8 (diff)
downloadstasis-8bb5d96b475ede86193dfab398535d0764e6012d.tar.gz
Replace string functions (comment future code)
-rw-r--r--src/lib/delivery/delivery_install.c8
1 files changed, 4 insertions, 4 deletions
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