Skip to content

Commit df6021a

Browse files
committed
[recursive-lipo] Fix incorrect indentation
The actual `lipo` call was incorrectly indented by f8e3819.
1 parent 58aaa4f commit df6021a

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)