generate.bat: remove extra % from VC11 and VC12 runs

The extra % translates to nothing, so this did not break anything they
are just superfluous.

Follow-up to 57d349fe0e

Assisted-by: Viktor Szakats

Found by Codex Security
This commit is contained in:
Daniel Stenberg 2026-03-17 16:46:02 +01:00
parent 650546fbe0
commit 0d7677ac72
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -165,12 +165,12 @@ rem
set "R02=v100"
set "R03=VC10"
set "R04=4.0"
) else if "%1%" == "VC11" (
) else if "%1" == "VC11" (
set "R01=12.00"
set "R02=v110"
set "R03=VC11"
set "R04=4.0"
) else if "%1%" == "VC12" (
) else if "%1" == "VC12" (
set "R01=12.00"
set "R02=v120"
set "R03=VC12"