1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Fix quotes

This commit is contained in:
Ewout Prangsma 2018-09-25 15:53:25 +02:00
parent 32ea94dafa
commit 1529755984
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -15,7 +15,7 @@ function replaceInFile {
local FILE=$2
case $(uname) in
Darwin)
sed -e ${EXPR} -i "" ${FILE}
sed -e "${EXPR}" -i "" ${FILE}
;;
*)
sed -i --expression=${EXPR} ${FILE}