mirror of https://github.com/status-im/consul.git
Merge pull request #4271 from hashicorp/build-system-linux-compat
Build system linux compat
This commit is contained in:
commit
40886b52ed
|
@ -32,10 +32,8 @@ CONSUL_PKG_NAME="consul"
|
|||
if test "$(uname)" == "Darwin"
|
||||
then
|
||||
SED_EXT="-E"
|
||||
alias sed_i="sed -i ''"
|
||||
else
|
||||
SED_EXT=""
|
||||
alias sed_i="sed -i"
|
||||
SED_EXT="-r"
|
||||
fi
|
||||
|
||||
CONSUL_BINARY_TYPE=oss
|
||||
|
|
|
@ -58,6 +58,17 @@ function debug {
|
|||
fi
|
||||
}
|
||||
|
||||
function sed_i {
|
||||
if test "$(uname)" == "Darwin"
|
||||
then
|
||||
sed -i '' "$@"
|
||||
return $?
|
||||
else
|
||||
sed -i "$@"
|
||||
return $?
|
||||
fi
|
||||
}
|
||||
|
||||
function is_set {
|
||||
# Arguments:
|
||||
# $1 - string value to check its truthiness
|
||||
|
|
Loading…
Reference in New Issue