From 32011c5b1f4b3d9564ecf9e872274c9dae86912c Mon Sep 17 00:00:00 2001 From: cronekorkn Date: Tue, 11 Jun 2024 18:02:03 +0200 Subject: [PATCH] bundles/macbook/files/venv: install optional requirements --- bundles/macbook/files/venv | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bundles/macbook/files/venv b/bundles/macbook/files/venv index ae64329..cd9b934 100644 --- a/bundles/macbook/files/venv +++ b/bundles/macbook/files/venv @@ -19,5 +19,10 @@ if test "$DELTA" -gt 86400 then python3 -m pip --require-virtualenv install pip wheel --upgrade python3 -m pip --require-virtualenv install -r requirements.txt --upgrade + if test -e optional-requirements.txt + then + python3 -m pip --require-virtualenv install -r optional-requirements.txt --upgrade + fi + python3 -m pip --require-virtualenv install -r optional-requirements.txt --upgrade date +%s > .pip_upgrade_timestamp fi