From 3ed863ef4d878d5007e3ac807e74a31f4e1972c1 Mon Sep 17 00:00:00 2001 From: Daniel Bedeleanu Date: Sat, 18 Apr 2026 13:04:39 +0000 Subject: [PATCH] chore: update Git Infrastructure section for Linux environment Replaced macOS-specific hardening (xcode-select workarounds) with Linux-native approach using system git in PATH. --- PROJECT_ARCHITECTURE.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/PROJECT_ARCHITECTURE.md b/PROJECT_ARCHITECTURE.md index 3752ec5b..c34d088d 100644 --- a/PROJECT_ARCHITECTURE.md +++ b/PROJECT_ARCHITECTURE.md @@ -103,10 +103,9 @@ To ensure enterprise-grade protection, the following policies are enforced: - **HTTPS Enforcement:** The system requires TLS (Port 8909) for camera access and secure token transmission. - **Manifest Integrity:** A comprehensive `manifest.json` ensures the app is recognized as a trusted PWA on mobile platforms (iOS/Android). -### 7.5 Git Infrastructure Hardening (v1.7.0) -To ensure deployment stability on macOS environments with potentially broken developer tool links (`xcode-select` errors): -- **Direct Binary Mapping:** The system bypasses path resolution by using a hardcoded direct link to the Git binary in `.git_path` (`/Library/Developer/CommandLineTools/usr/bin/git`). -- **Persistence Mandate:** This path is protected by mandatory AI rules and must never be removed or modified to ensure `save-version` and automated deployment scripts remain functional. +### 7.5 Git Infrastructure (Linux Native) + +All git operations use the standard `git` command available in system PATH. On Linux systems, this is reliably provided by the git package via the system package manager. ## 8. Multi-AI Engine & Dynamic Configuration (v1.9.23)