Skip to content

Commit 47da75e

Browse files
committed
Fix weird rebase issue
1 parent a16201e commit 47da75e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build_scripts/apple_utils.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,7 @@ def BuildXCFramework(root, targets, args):
439439
print("""Success! Add the OpenUSD.xcframework to your Xcode Project.""")
440440

441441
def main():
442-
443-
444-
if __name__ == '__main__':
445-
main()import argparse
442+
import argparse
446443
parser = argparse.ArgumentParser(description="A set of command line utilities for building on Apple Platforms")
447444
subparsers = parser.add_subparsers(dest="command", required=True)
448445

@@ -461,4 +458,8 @@ def main():
461458
if command == "xcframework":
462459
BuildXCFramework(args.install_dir, args.build_targets, unknown)
463460
else:
464-
raise RuntimeError(f"Unknown command: {command}")
461+
raise RuntimeError(f"Unknown command: {command}")
462+
463+
464+
if __name__ == '__main__':
465+
main()

0 commit comments

Comments
 (0)