From ef181ac7d3b24aacb6a7406f5d3766de679bec5e Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Tue, 10 Feb 2026 01:50:31 +0100 Subject: [PATCH] fix(templates): use the correct variable in taskfiles --- templates/Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/Taskfile.yml b/templates/Taskfile.yml index 2b1c000..80a43c6 100644 --- a/templates/Taskfile.yml +++ b/templates/Taskfile.yml @@ -8,7 +8,7 @@ set: vars: # REPOSITORY_ROOT: # sh: git rev-parse --show-toplevel - VENV_DIR: '{{ .ROOT_TASKFILE }}/.venv' + VENV_DIR: '{{ .ROOT_DIR }}/.venv' dotenv: - .env @@ -36,7 +36,7 @@ tasks: python:venv:create: vars: PYTHON_VERSION: '{{ .PYTHON_VERSION | default 3.12}}' - REQUIREMENTS_FILE: '{{ .ROOT_TASKFILE }}/requirements.txt' + REQUIREMENTS_FILE: '{{ .ROOT_DIR }}/requirements.txt' cmds: - python{{ .PYTHON_VERSION }} -m 'venv' '{{ .VENV_DIR }}' - >-