Meta: Alias the "ladybird" target to "Ladybird" in ladybird.py

We do the same thing in ladybird.sh for convenience.
This commit is contained in:
Timothy Flynn 2025-05-27 12:39:53 -04:00 committed by Jelle Raaijmakers
commit 25666390f6
Notes: github-actions[bot] 2025-05-27 18:03:46 +00:00

View file

@ -186,6 +186,9 @@ def main():
print("ladybird.py must be run from a Visual Studio enabled environment", file=sys.stderr)
sys.exit(1)
if args.target == "ladybird":
args.target = "Ladybird"
if args.command == "build":
build_dir = configure_main(platform, args.preset, args.cc, args.cxx)
build_main(build_dir, args.target, args.args)