Skip to content

Commit

Permalink
include agave-* crates
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Aug 13, 2024
1 parent 681507c commit 6edf95f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ci/order-crates-for-publishing.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def is_path_dev_dep(package, dependency, wrong_path_dev_dependencies):
return is_special_cased

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

0 comments on commit 6edf95f

Please sign in to comment.