def parse_arguments()

in build.py [0:0]


def parse_arguments():
    """Parse command line arguments for the script."""
    parser = CustomArgumentParser(
        description='This script downloads integration files for a specified Kibana version.'
    )
    parser.add_argument('-v', '--version', required=True, help='Specify the Kibana version. Example: -v 8.11.1')
    return parser.parse_args().version