From d79a725ca6d62823fabec5401d5021be5f3b9dd8 Mon Sep 17 00:00:00 2001 From: Justin DuJardin Date: Wed, 17 Jan 2024 16:03:37 -0800 Subject: [PATCH] chore: :sweat: really fix netlify script --- website/tools/netlify.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/website/tools/netlify.sh b/website/tools/netlify.sh index af79285e..bad8f161 100644 --- a/website/tools/netlify.sh +++ b/website/tools/netlify.sh @@ -9,11 +9,7 @@ if [ ! -d "${DIR}" ]; then python -m virtualenv -p python3 .env || virtualenv -p python3 .env fi echo "Installing/updating requirements..." -.env/bin/pip install -e ".[all]" -# Use root env -. ../.env/bin/activate -echo "Installing/updating requirements..." -pip install -r requirements.txt +.env/bin/pip install -r requirements.txt echo "Building Netlify site..."