mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
10 lines
184 B
Bash
Executable File
10 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$HOMEBREW_CCCFG" = *s* ]]
|
|
then
|
|
# Fix issue with sed barfing on unicode characters on Mountain Lion
|
|
unset LC_ALL
|
|
export LC_CTYPE="C"
|
|
fi
|
|
exec /usr/bin/sed "$@"
|