Skip to content

Commit 1d76580

Browse files
authored
skip invalid line rather then breaking
1 parent 0e8ea69 commit 1d76580

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/managers/builtin/pipListUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function parsePipList(data: string): PipPackage[] {
2222
const name = parts[0].trim();
2323
const version = parts[1].trim();
2424
if (!isValidVersion(version)) {
25-
break;
25+
continue;
2626
}
2727
const pkg = {
2828
name,

0 commit comments

Comments
 (0)