mirror of
https://github.com/fsecada01/Pygentic-AI.git
synced 2026-05-12 04:04:57 +00:00
Issue: Secrets with special characters (SSH_PRIVATE_KEY) breaking shell Error: "command not found" due to shell interpreting secret values Root Cause: echo interprets escape sequences and special characters Fix: Use printf '%s' for literal string output Changes: - Replace echo with printf '%s' for safe JSON handling - Filter out github_token (not needed in .env) - Multi-line jq for better readability This fixes multiline secrets (SSH keys, certificates, etc.) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>