From f2babb60635629a4815b89d237b2e6848b50509f Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Fri, 18 Jul 2025 16:49:04 +0200 Subject: [PATCH] Remove requirement of license. --- msvc_build_libraries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msvc_build_libraries.py b/msvc_build_libraries.py index c67d586b1..d300ab4a2 100755 --- a/msvc_build_libraries.py +++ b/msvc_build_libraries.py @@ -141,7 +141,7 @@ resource = first(tools["localizedResources"], lambda x: x["language"] == "en-us" license = resource["license"] if not args.accept_license: - accept = input(f"Do you accept Visual Studio license at {license}, and also confirm that you have a valid license Visual Studio license allowing you to download the VS Build Tools [Y/N] ?") + accept = input(f"Do you accept Visual Studio license at {license} [Y/N] ?") if not accept or accept[0].lower() != "y": exit(0)