File tree Expand file tree Collapse file tree
.manager/src/pypackit/script/build Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ def update_channel_priority(requirement: str) -> None:
9393 update_channel_priority (req ["value" ])
9494 return sorted (channel_priority , key = channel_priority .get , reverse = True )
9595
96- recipe = get_recipe (pkg_id = pkg )
97- channels = get_channels (recipe )
96+ recipe_data = get_recipe (pkg_id = pkg )
97+ channels = get_channels (recipe_data )
9898 # Ensure the output folder exists
9999 output_dir = Path (output ).resolve ()
100100 output_dir .mkdir (parents = True , exist_ok = True )
@@ -107,7 +107,7 @@ def update_channel_priority(requirement: str) -> None:
107107 * _CMD_PREFIX ,
108108 "conda" ,
109109 "build" ,
110- str (Path (recipe ["path" ][recipe ]).resolve ()),
110+ str (Path (recipe_data ["path" ][recipe ]).resolve ()),
111111 "--output-folder" ,
112112 str (output_dir ),
113113 "--stats-file" ,
You can’t perform that action at this time.
0 commit comments