Remove requirement of license.

This commit is contained in:
Christoffer Lerno
2025-07-18 16:49:04 +02:00
parent b8d07474fe
commit f2babb6063

View File

@@ -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)