fix: argument parsing error 'sdk_path-version' instead of 'sdk-version'

This commit is contained in:
thecalculus
2023-10-26 20:56:42 +11:00
committed by Christoffer Lerno
parent 9af37fe427
commit a7d032df21

View File

@@ -68,7 +68,7 @@ ap = argparse.ArgumentParser()
ap.add_argument("--show-versions", const=True, action="store_const", help="Show available MSVC and Windows SDK versions")
ap.add_argument("--accept-license", const=True, action="store_const", help="Automatically accept license")
ap.add_argument("--msvc-version", help="Get specific MSVC version")
ap.add_argument("--sdk_path-version", help="Get specific Windows SDK version")
ap.add_argument("--sdk-version", help="Get specific Windows SDK version")
args = ap.parse_args()