From 9ded28204cb4f9b5b7d76cdfce3d95569f526c6c Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sun, 16 Oct 2022 18:40:06 -0700 Subject: [PATCH] Try to get sed -i that'll work on both OSX and linux --- script/test-module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test-module b/script/test-module index df61a7d..8148d73 100755 --- a/script/test-module +++ b/script/test-module @@ -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