From 4cc0c394fece87953ee1560569658d0266b54e5f Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Mon, 25 May 2026 07:34:11 +0200 Subject: [PATCH] =?UTF-8?q?build.sh:=20sincronitza=20depend=C3=A8ncies=20s?= =?UTF-8?q?empre,=20no=20nom=C3=A9s=20al=20crear=20el=20venv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 8444b39..cf6f1c2 100755 --- a/build.sh +++ b/build.sh @@ -19,9 +19,11 @@ if [ ! -d .venv ]; then echo "[build] creando venv…" python3 -m venv .venv .venv/bin/pip install --quiet --upgrade pip - .venv/bin/pip install --quiet -r requirements.txt fi +echo "[build] sincronizando dependencias…" +.venv/bin/pip install --quiet -r requirements.txt + if ! .venv/bin/python -c "import nuitka" 2>/dev/null; then echo "[build] instalando nuitka en el venv…" .venv/bin/pip install --quiet nuitka