Skip to content

Commit

Permalink
update variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Aug 13, 2024
1 parent 0d06f37 commit 681507c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/order-crates-for-publishing.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ def is_path_dev_dep(package, dependency, wrong_path_dev_dependencies):

def should_add(package, dependency, wrong_path_dev_dependencies):
related_to_solana = dependency['name'].startswith('solana')
self_dev_dep_with_dev_context_only_utils = is_path_dev_dep(
path_dev_dep = is_path_dev_dep(
package, dependency, wrong_path_dev_dependencies
)

return related_to_solana and not self_dev_dep_with_dev_context_only_utils
return related_to_solana and not path_dev_dep

def get_packages():
metadata = load_metadata()
Expand Down

0 comments on commit 681507c

Please sign in to comment.