mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
test: use perl instead of sed -r for portability
Our OS X users report -r is not a supported option for sed. Use perl instead.
This commit is contained in:
parent
60e79e3a9f
commit
540a34d096
1 changed files with 1 additions and 1 deletions
|
@ -581,7 +581,7 @@ NOTMUCH_NEW ()
|
||||||
|
|
||||||
notmuch_search_sanitize ()
|
notmuch_search_sanitize ()
|
||||||
{
|
{
|
||||||
sed -r -e 's/("?thread"?: ?)("?)................("?)/\1\2XXX\3/'
|
perl -pe 's/("?thread"?: ?)("?)................("?)/\1\2XXX\3/'
|
||||||
}
|
}
|
||||||
|
|
||||||
NOTMUCH_SHOW_FILENAME_SQUELCH='s,filename:.*/mail,filename:/XXX/mail,'
|
NOTMUCH_SHOW_FILENAME_SQUELCH='s,filename:.*/mail,filename:/XXX/mail,'
|
||||||
|
|
Loading…
Reference in a new issue