Skip to content

Commit

Permalink
Fallback to input package filename if not found in the index; it shou…
Browse files Browse the repository at this point in the history
…ld be equivalent anyway
  • Loading branch information
jaimergp committed Oct 12, 2023
1 parent bf8caf5 commit a1c3bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_build/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def execute_download_actions(m, actions, env, package_subset=None, require_files
with utils.LoggingContext():
pfe.execute()
for pkg_dir in pkgs_dirs:
_loc = os.path.join(pkg_dir, index[pkg].fn)
_loc = os.path.join(pkg_dir, index.get(pkg, pkg).fn)
if os.path.isfile(_loc):
pkg_loc = _loc
break
Expand Down

0 comments on commit a1c3bdf

Please sign in to comment.