[3.6] bpo-31662: Fix typos in uploadrelease.bat script (#3858) · python/cpython@a51c760 (original) (raw)

Original file line number Diff line number Diff line change
@@ -22,9 +22,9 @@ if "%1" EQU "-t" (set TARGET=%~2) && shift && shift && goto CheckOpts
22 22 if "%1" EQU "--target" (set TARGET=%~2) && shift && shift && goto CheckOpts
23 23 if "%1" EQU "--dry-run" (set DRYRUN=true) && shift && goto CheckOpts
24 24 if "%1" EQU "--skip-gpg" (set NOGPG=true) && shift && goto CheckOpts
25 -if "%1" EQU "--skip-purge" (set PURGE_OPTION=) && shift && godo CheckOpts
26 -if "%1" EQU "--skip-test" (set NOTEST=true) && shift && godo CheckOpts
27 -if "%1" EQU "-T" (set NOTEST=true) && shift && godo CheckOpts
25 +if "%1" EQU "--skip-purge" (set PURGE_OPTION=) && shift && goto CheckOpts
26 +if "%1" EQU "--skip-test" (set NOTEST=true) && shift && goto CheckOpts
27 +if "%1" EQU "-T" (set NOTEST=true) && shift && goto CheckOpts
28 28 if "%1" NEQ "" echo Unexpected argument "%1" & exit /B 1
29 29
30 30 if not defined PLINK where plink > "%TEMP%\plink.loc" 2> nul && set /P PLINK= < "%TEMP%\plink.loc" & del "%TEMP%\plink.loc"