Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged

derp #15876

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/fuchsia/merge_and_upload_debug_symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def ProcessCIPDPackage(upload, cipd_yaml, engine_version, out_dir, target_arch):
# instances. Normally verification takes slightly more than 1 minute when
# it succeeds.
num_tries = 3
while tries in range(num_tries):
for tries in range(num_tries):
try:
subprocess.check_call(command, cwd=_packaging_dir)
break
Expand Down