mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 02:40:18 +00:00
fix(ios): harden team-id profile fallback and tests
This commit is contained in:
@@ -94,7 +94,10 @@ load_teams_from_xcode_managed_profiles() {
|
||||
| /usr/bin/python3 -c '
|
||||
import plistlib, sys
|
||||
try:
|
||||
d = plistlib.load(sys.stdin.buffer)
|
||||
raw = sys.stdin.buffer.read()
|
||||
if not raw:
|
||||
raise SystemExit(0)
|
||||
d = plistlib.loads(raw)
|
||||
for tid in d.get("TeamIdentifier", []):
|
||||
print(tid)
|
||||
except Exception:
|
||||
|
||||
Reference in New Issue
Block a user