Skip to content

Commit

Permalink
Support eups list \* -- bug fix??
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertLuptonTheGood committed Jan 16, 2024
1 parent 14e9ee5 commit ea2e117
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Release_Notes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-01-16 rhl
- Make `eups list \*` work (I thought it did already; the manual says that it does)

2023-06-28 timj (2.2.5)
- Replace usages of pipes.quote with shlex.quote.
The former was deprecated very early in the transition
Expand Down
2 changes: 1 addition & 1 deletion python/eups/Eups.py
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,7 @@ def getSetupProducts(self, requestedProductName=None):
except IndexError:
versionName = None

if requestedProductName and productName != requestedProductName:
if requestedProductName and not fnmatch.fnmatch(productName, requestedProductName):
continue

try:
Expand Down

0 comments on commit ea2e117

Please sign in to comment.