Skip to content

Commit

Permalink
Fix test for link command
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexios80 committed Jan 17, 2025
1 parent dbb776b commit f99010e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ Future<int> linkDependencies({

for (final project in projects) {
// Skip workspace members (the workspace will resolve them)
if (project.type == ProjectType.workspaceMember) {
if (project.type == ProjectType.workspaceMember &&
project.workspaceInScope) {
print(yellow.wrap('Skipping workspace member: ${project.path}'));
continue;
}
Expand Down

0 comments on commit f99010e

Please sign in to comment.