Merge pull request #109 from jkoelndorfer/next

Fixing issue where BSD detection can bleed info to stdout.
pull/22/head
Ben Hilburn 9 years ago
commit 19caa39333

@ -317,8 +317,7 @@ esac
# `sed` is unfortunately not consistent across OSes when it comes to flags.
SED_EXTENDED_REGEX_PARAMETER="-r"
if [[ "$OS" == 'OSX' ]]; then
local IS_BSD_SED
IS_BSD_SED=$(sed --version &>> /dev/null || echo "BSD sed")
local IS_BSD_SED="$(sed --version &>> /dev/null || echo "BSD sed")"
if [[ -n "$IS_BSD_SED" ]]; then
SED_EXTENDED_REGEX_PARAMETER="-E"
fi

Loading…
Cancel
Save