Skip to content

Commit 3039e2c

Browse files
committed
Add legacy flag to xcresult get command
1 parent e657cf0 commit 3039e2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ios/export_xcresult_attachments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def run_xcresult(args: Sequence[str]) -> str:
3434

3535

3636
def get_json(bundle_path: str, object_id: Optional[str] = None) -> Dict:
37-
args = ["get", "--path", bundle_path, "--format", "json"]
37+
args = ["get", "--legacy", "--path", bundle_path, "--format", "json"]
3838
if object_id:
3939
args.extend(["--id", object_id])
4040
output = run_xcresult(args)

0 commit comments

Comments
 (0)