From 6a496c2b37f3e232251d7a2c73b838fa6690a65b Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 4 Mar 2023 09:13:20 +0000 Subject: [PATCH] Add test for poetry/pyenv as macOS can install them in different places --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b55de6f3..ae0b217f 100644 --- a/Makefile +++ b/Makefile @@ -55,10 +55,10 @@ $(LAZY_DIR): git clone --depth 1 $(LAZY_REPO) $@ $(PYENV_DIR): - bash packages/pyenv.sh + command -v pyenv > /dev/null || bash packages/pyenv.sh $(POETRY_DIR): - python3 packages/poetry.py + command -v poetry > /dev/null || python3 packages/poetry.py config/nvim/.venv: python3 -m venv $@