Skip to content

Commit

Permalink
conda: handle phaser_voyager directory change during installation
Browse files Browse the repository at this point in the history
  • Loading branch information
bkpoon committed Dec 12, 2024
1 parent cbdf50d commit 18b5212
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libtbx/auto_build/conda_build/update_libtbx_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ def update_libtbx_env(default_dir=None):
new_paths[0] = None
new_paths[1] = env.as_relocatable_path(new_path + '_' + module.mate_suffix)
break
if module.name == 'phaser_voyager' and os.path.isdir(os.path.join(path, 'New_Voyager')):
new_paths[0] = env.as_relocatable_path(os.path.join(path, 'New_Voyager'))
new_paths[1] = None
break
dist_paths = module.dist_paths
for i, path in enumerate(dist_paths):
if path is not None:
Expand Down

0 comments on commit 18b5212

Please sign in to comment.