aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2025-03-20 19:24:04 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2025-03-20 19:24:04 -0400
commitedd6f8819fdfdc900cc5069665c6fac73ea14edf (patch)
tree5a105945b790dbd4e734dcb5054c6678de4fc768
parent86132cce8f679b6f5369e4e5b09278d4f02049b8 (diff)
downloadstasis-without-extras-in-spec.tar.gz
Always use the local indexwithout-extras-in-spec
-rw-r--r--src/lib/delivery/delivery_install.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/delivery/delivery_install.c b/src/lib/delivery/delivery_install.c
index 8550a43..246c604 100644
--- a/src/lib/delivery/delivery_install.c
+++ b/src/lib/delivery/delivery_install.c
@@ -224,9 +224,10 @@ int delivery_install_packages(struct Delivery *ctx, char *conda_install_dir, cha
if (!ctx->meta.based_on) {
strcat(cmd, " --upgrade");
}
- sprintf(cmd + strlen(cmd), " --extra-index-url 'file://%s'", ctx->storage.wheel_artifact_dir);
}
+ sprintf(cmd + strlen(cmd), " --extra-index-url 'file://%s'", ctx->storage.wheel_artifact_dir);
+
for (size_t x = 0; manifest[x] != NULL; x++) {
char *name = NULL;
for (size_t p = 0; p < strlist_count(manifest[x]); p++) {