Skip to content

Commit 67d6002

Browse files
authored
Merge pull request #3099 from larsewi/pip
ENT-13667: Fixed bad regex in packages promise method for pip
2 parents 4e8eb67 + 8871aef commit 67d6002

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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)