Umgebungsvariablen in DXFMAKROS umbenannt

This commit is contained in:
2026-05-05 16:16:00 +02:00
parent f6300b2ad2
commit d0ad132e4b
9 changed files with 69 additions and 69 deletions
+2 -2
View File
@@ -8,13 +8,13 @@
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$SCRIPT_DIR/setenv.sh"
if [ ! -d "$PROJECT/.venv" ]; then
if [ ! -d "$DXFMAKRO/.venv" ]; then
echo "FEHLER: Virtual environment nicht gefunden."
echo "Bitte zuerst bin/install_py.sh ausfuehren."
return 1
fi
source "$PROJECT/.venv/bin/activate"
source "$DXFMAKRO/.venv/bin/activate"
echo "Virtuelle Umgebung aktiviert."
echo "Python-Version:"
python --version