Try to get sed -i that'll work on both OSX and linux

This commit is contained in:
Ross McFarland
2022-10-16 18:40:06 -07:00
parent 64759e0236
commit 9ded28204c
+1 -1
View File
@@ -31,7 +31,7 @@ elif [ -f pyproject.toml ]; then
# install poetry
pip install poetry
# make sure that poetry doesn't blow away our locally installed octodns
sed -i '' '/^octodns =/d' pyproject.toml
sed -i'.bak' '/^octodns =/d' pyproject.toml
# now install all the deps
poetry install --no-root -v
else