Skip to content

Commit

Permalink
Fixes to strip symbols correctly. (flutter#41097)
Browse files Browse the repository at this point in the history
Fixes to strip symbols correctly.
  • Loading branch information
godofredoc authored Apr 12, 2023
1 parent 176ad4a commit b8f1fa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sky/tools/create_full_ios_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ def main():
args, dst, framework, arm64_framework, simulator_framework,
simulator_x64_framework, simulator_arm64_framework
)
framework_binary = os.path.join(framework, 'Flutter')
process_framework(args, dst, framework, framework_binary)
generate_gen_snapshot(args, dst, x64_out_dir, arm64_out_dir)
zip_archive(dst)
return 0
Expand All @@ -129,6 +127,7 @@ def create_framework( # pylint: disable=too-many-arguments
shutil.rmtree(framework, True)
shutil.copytree(arm64_framework, framework)
framework_binary = os.path.join(framework, 'Flutter')
process_framework(args, dst, framework, framework_binary)

if args.simulator_arm64_out_dir is not None:
shutil.rmtree(simulator_framework, True)
Expand Down Expand Up @@ -159,6 +158,7 @@ def create_framework( # pylint: disable=too-many-arguments
framework_binary
])

process_framework(args, dst, framework, framework_binary)
return 0


Expand Down

0 comments on commit b8f1fa4

Please sign in to comment.