From fe4638553523f0ae31ede803d2ff74f9c85eac39 Mon Sep 17 00:00:00 2001 From: Alberto Invernizzi Date: Wed, 17 Dec 2025 16:45:51 +0100 Subject: [PATCH] avoid .venv arch conflicts by having separate venvs for each arch --- bin/stack-config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/stack-config b/bin/stack-config index 4c42a0d..31a700e 100755 --- a/bin/stack-config +++ b/bin/stack-config @@ -1,4 +1,6 @@ #!/usr/bin/env bash +export UV_PROJECT_ENVIRONMENT=.venv-`uname -m` + STACKINATOR_ROOT=$(dirname `realpath $0`)/.. uv run --directory $STACKINATOR_ROOT --with . python -m stackinator.main $@