Skip to content

Commit

Permalink
Fix some CodeQL noise
Browse files Browse the repository at this point in the history
  • Loading branch information
skottmckay committed May 2, 2024
1 parent 1298c2f commit e25fd03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ def _validate_build_dir(args: argparse.Namespace):
if args.android:
target_sys = "Android"
elif args.ios:
target_sys = "iOS"
# target_sys = "iOS"
raise ValueError("iOS builds are not supported yet.")
elif args.arm64:
target_sys = "arm64"
# target_sys = "arm64"
raise ValueError("Cross-compiling for ARM64 is not supported yet.")
elif platform.system() == "Darwin":
# also tweak build directory name for mac builds
Expand Down

0 comments on commit e25fd03

Please sign in to comment.