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 then
SED_EXT="-E" SED_EXT="-E"
else else
SED_EXT="" SED_EXT="-r"
fi fi
CONSUL_BINARY_TYPE=oss CONSUL_BINARY_TYPE=oss