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

Commit c3cc104

Browse files
authored
Fix mac gen_snapshot uploader (#10423)
1 parent 310bc03 commit c3cc104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sky/tools/create_macos_gen_snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def main():
2020

2121
fat_gen_snapshot = os.path.join(args.dst, 'gen_snapshot')
2222
arm64_gen_snapshot = os.path.join(args.arm64_out_dir, 'clang_x64', 'gen_snapshot')
23-
armv7_gen_snapshot = os.path.join(args.armv7_out_dir, 'clang_x86', 'gen_snapshot')
23+
armv7_gen_snapshot = os.path.join(args.armv7_out_dir, 'clang_x64', 'gen_snapshot')
2424

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

0 commit comments

Comments
 (0)