You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `--perl-regexp` option of `grep` requires a "unibyte or UTF-8"
locale, simply refusing to work at all if neither `LANG`, `LC_ALL` nor
`LC_CTYPE` are set.
Typically, this would not be a problem because `/etc/profile` ensures
that `LC_CTYPE` is set. But GitHub workflows call `bash` with
`-noprofile`, therefore we need to do set `LC_CTYPE` here. Just like
`/etc/profile` does, we won't override any locale the user might have
configured explicitly.
Signed-off-by: Johannes Schindelin <[email protected]>
0 commit comments