From 300f4da3c20c265fa5cee9cceb3a37aae667b5c2 Mon Sep 17 00:00:00 2001 From: Job Evers-Meltzer Date: Mon, 19 Sep 2016 14:55:15 -0700 Subject: [PATCH] fix typo --- packaging/windows/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/windows/install.ps1 b/packaging/windows/install.ps1 index eb793a65d..714851fdc 100644 --- a/packaging/windows/install.ps1 +++ b/packaging/windows/install.ps1 @@ -8,7 +8,7 @@ If ($(APPVEYOR_REPO_TAG) -Match "true") { exit 0 } # non-testing tags should be in the form v1.2.3 - If ("v$(C:\Python27\python.exe setup.py -V" -Match $(APPVEYOR_REPO_TAG_NAME)) { + If ("v$(C:\Python27\python.exe setup.py -V)" -Match $(APPVEYOR_REPO_TAG_NAME)) { exit 0 } exit 1