Skip to content

Commit 3fac341

Browse files
authored
Fix missing common list when no installables are available (#114)
1 parent 7625c79 commit 3fac341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/managers/builtin/pipUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ async function selectWorkspaceOrCommon(
112112
return undefined;
113113
}
114114

115-
if (common.length === 0) {
115+
if (common.length > 0) {
116116
return selectFromCommonPackagesToInstall(common);
117117
}
118118

0 commit comments

Comments
 (0)