diff --git a/Meta/ladybird.py b/Meta/ladybird.py index 373cccf9d61..7833d14179e 100755 --- a/Meta/ladybird.py +++ b/Meta/ladybird.py @@ -2,6 +2,7 @@ # Copyright (c) 2025, ayeteadoe # Copyright (c) 2025, Tim Flynn +# Copyright (c) 2025, Nicolas Danelon # # SPDX-License-Identifier: BSD-2-Clause @@ -83,10 +84,14 @@ def main(): "args", nargs=argparse.REMAINDER, help="Additional arguments passed through to the build system" ) - subparsers.add_parser( + install_parser = subparsers.add_parser( "install", help="Installs the target binary", parents=[preset_parser, compiler_parser, target_parser] ) + install_parser.add_argument( + "args", nargs=argparse.REMAINDER, help="Additional arguments passed through to the build system" + ) + subparsers.add_parser("vcpkg", help="Ensure that dependencies are available", parents=[preset_parser]) subparsers.add_parser("clean", help="Cleans the build environment", parents=[preset_parser])