Skip to content

Commit

Permalink
Fix mac gen_snapshot uploader (#10423)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamappelbe authored Aug 1, 2019
1 parent 310bc03 commit c3cc104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/tools/create_macos_gen_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():

fat_gen_snapshot = os.path.join(args.dst, 'gen_snapshot')
arm64_gen_snapshot = os.path.join(args.arm64_out_dir, 'clang_x64', 'gen_snapshot')
armv7_gen_snapshot = os.path.join(args.armv7_out_dir, 'clang_x86', 'gen_snapshot')
armv7_gen_snapshot = os.path.join(args.armv7_out_dir, 'clang_x64', 'gen_snapshot')

if not os.path.isfile(arm64_gen_snapshot):
print 'Cannot find x86_64 (arm64) gen_snapshot at', arm64_gen_snapshot
Expand Down

0 comments on commit c3cc104

Please sign in to comment.