Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
fix subdir loading
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Nov 15, 2023
1 parent 2d5d030 commit 7a25dbd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions boa/core/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ def __init__(self, channels, platform, output_folder=None):
self.output_folder = output_folder or "local"
self.pool = libmambapy.Pool()
self.repos = []

self.index = load_channels(
self.pool, self.channels, self.repos, platform=platform
)
Expand Down
3 changes: 3 additions & 0 deletions boa/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ def fixup_channel_spec(spec):
channel, channel_platform, full_url, pkgs_dirs, repodata_fn
)

sd.download_and_check_targets(dlist)
sd.finalize_checks()

index.append(
(sd, {"platform": channel_platform, "url": url, "channel": channel})
)
Expand Down

0 comments on commit 7a25dbd

Please sign in to comment.