diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-03-20 19:24:04 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-03-20 19:24:04 -0400 | 
| commit | edd6f8819fdfdc900cc5069665c6fac73ea14edf (patch) | |
| tree | 5a105945b790dbd4e734dcb5054c6678de4fc768 /src/lib | |
| parent | 86132cce8f679b6f5369e4e5b09278d4f02049b8 (diff) | |
| download | stasis-edd6f8819fdfdc900cc5069665c6fac73ea14edf.tar.gz | |
Always use the local indexwithout-extras-in-spec
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/delivery/delivery_install.c | 3 | 
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++) {  | 
