Sync network redesign repo state and cutover artifacts

This commit is contained in:
Fizzlepoof
2026-05-22 20:16:21 +00:00
parent 4b1e3d4061
commit 9e6dde7695
59 changed files with 5389 additions and 244 deletions

View File

@@ -12,8 +12,21 @@ if [[ ! -f "$ENV_FILE" ]]; then
fi
set -a
# shellcheck disable=SC1090
source "$ENV_FILE"
eval "$(python3 - "$ENV_FILE" <<'PY'
from pathlib import Path
import shlex
import sys
env_file = Path(sys.argv[1])
for raw_line in env_file.read_text(encoding='utf-8').splitlines():
line = raw_line.strip()
if not line or line.startswith('#') or '=' not in line:
continue
key, value = line.split('=', 1)
value = value.strip().strip('"').strip("'")
print(f"{key.strip()}={shlex.quote(value)}")
PY
)"
set +a
required_vars=(