Skip to content

Commit e833657

Browse files
authored
Merge pull request #62560 from ahoppen/ahoppen/fix-recursive-lipo
[recursive-lipo] Fix incorrect indentation
2 parents b8a3bbb + df6021a commit e833657

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

utils/recursive-lipo

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,8 @@ def merge_lipo_files(src_root_dirs, file_list, dest_root_dir, verbose=False,
120120
(file_paths, dest_path))
121121
else:
122122
print("-- Running lipo %s" % dest_path)
123-
shell.call((lipo_cmd + ["-output", dest_path] +
124-
file_paths),
125-
echo=verbose)
123+
shell.call((lipo_cmd + ["-output", dest_path] + file_paths),
124+
echo=verbose)
126125
else:
127126
# Multiple instances are different, and they're not executable.
128127
print(

0 commit comments

Comments
 (0)