[Python-checkins] bpo-31662: Fix typos in uploadrelease.bat script

Steve Dower webhook-mailer at python.org
Mon Oct 2 11:54:00 EDT 2017


https://github.com/python/cpython/commit/efb560eee28b6b2418e1231573ca62574d6dc07b
commit: efb560eee28b6b2418e1231573ca62574d6dc07b
branch: master
author: Anselm Kruis <a.kruis at science-computing.de>
committer: Steve Dower <steve.dower at microsoft.com>
date: 2017-10-02T08:53:55-07:00
summary:

bpo-31662: Fix typos in uploadrelease.bat script

files:
M Tools/msi/uploadrelease.bat

diff --git a/Tools/msi/uploadrelease.bat b/Tools/msi/uploadrelease.bat
index 4753fd35032..4902b6cf3f7 100644
--- a/Tools/msi/uploadrelease.bat
+++ b/Tools/msi/uploadrelease.bat
@@ -22,9 +22,9 @@ if "%1" EQU "-t" (set TARGET=%~2) && shift && shift && goto CheckOpts
 if "%1" EQU "--target" (set TARGET=%~2) && shift && shift && goto CheckOpts
 if "%1" EQU "--dry-run" (set DRYRUN=true) && shift && goto CheckOpts
 if "%1" EQU "--skip-gpg" (set NOGPG=true) && shift && goto CheckOpts
-if "%1" EQU "--skip-purge" (set PURGE_OPTION=) && shift && godo CheckOpts
-if "%1" EQU "--skip-test" (set NOTEST=true) && shift && godo CheckOpts
-if "%1" EQU "-T" (set NOTEST=true) && shift && godo CheckOpts
+if "%1" EQU "--skip-purge" (set PURGE_OPTION=) && shift && goto CheckOpts
+if "%1" EQU "--skip-test" (set NOTEST=true) && shift && goto CheckOpts
+if "%1" EQU "-T" (set NOTEST=true) && shift && goto CheckOpts
 if "%1" NEQ "" echo Unexpected argument "%1" & exit /B 1
 
 if not defined PLINK where plink > "%TEMP%\plink.loc" 2> nul && set /P PLINK= < "%TEMP%\plink.loc" & del "%TEMP%\plink.loc"



More information about the Python-checkins mailing list