Skip to content

Commit 9f0efb4

Browse files
authored
Merge pull request #3100 from larsewi/pip-3.24.x
ENT-13667: Fixed bad regex in packages promise method for pip (3.24.x)
2 parents 230b4be + 1b956ca commit 9f0efb4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/packages.cf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,9 @@ bundle common pip_knowledge
414414
vars:
415415
"call_pip" string => "$(paths.path[pip])";
416416

417-
"pip_list_name_regex" string => "^([[:alnum:]-_]+)\s\([\d.]+\)";
418-
"pip_list_version_regex" string => "^[[:alnum:]-_]+\s\(([\d.]+)\)";
419-
"pip_installed_regex" string => "^([[:alnum:]-_]+\s\([\d.]+\))";
417+
"pip_list_name_regex" string => "^([[:alnum:]\-_]+)\s\([\d.]+\)";
418+
"pip_list_version_regex" string => "^[[:alnum:]\-_]+\s\(([\d.]+)\)";
419+
"pip_installed_regex" string => "^([[:alnum:]\-_]+\s\([\d.]+\))";
420420
}
421421

422422
bundle common solaris_knowledge

0 commit comments

Comments
 (0)