Skip to content

Commit

Permalink
fix(modules,contrib,thunderbird): grep binary file error
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbadstuebner committed Mar 7, 2024
1 parent 14a06f7 commit dbeae36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumblebee_status/modules/contrib/thunderbird.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __getThunderbirdStream(self):
cmd = (
"find "
+ self.__home
+ " -name '*.msf' -exec grep -REo '\^A1=[0-9a-fA-F]+)' {} + | grep"
+ " -name '*.msf' -exec grep -aREo '\^A1=[0-9a-fA-F]+)' {} + | grep"
)
for inbox in self.__inboxes:
cmd += " -e {}".format(inbox)
Expand Down

0 comments on commit dbeae36

Please sign in to comment.