Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed Jul 18, 2024
1 parent 31cd07b commit 6d0bd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/utils/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub(crate) fn get_workspace_members(w_type: WorkspaceMemberType) -> Vec<Workspac
parse_workspace_member1(member_str)?
};
match w_type {
WorkspaceMemberType::Crate if !path.contains("examples/") => {
WorkspaceMemberType::Crate if path.contains("crates/") => {
Some(WorkspaceMember::new(name.to_string(), path.to_string()))
}
WorkspaceMemberType::Example if path.contains("examples/") => {
Expand Down

0 comments on commit 6d0bd62

Please sign in to comment.