sed extended regex on linux sometimes requires -r

This commit is contained in:
Matt Keeler 2018-06-25 10:19:02 -04:00
parent 80fac551e0
commit 99402ca023
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ if test "$(uname)" == "Darwin"
then
SED_EXT="-E"
else
SED_EXT=""
SED_EXT="-r"
fi
CONSUL_BINARY_TYPE=oss