From 3e9d3526e7cc6c2eae8f4d76ea301445cecf5533 Mon Sep 17 00:00:00 2001
From: Benedek Racz <benedek.racz@propatria-inc.com>
Date: Thu, 31 Oct 2019 09:13:30 +0100
Subject: [PATCH] [FIX] appveyor config. separete if-s

---
 appveyor.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
index 6a5a927..8f35fd3 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -39,12 +39,12 @@ after_test:
   - python -m setup sdist
   
   # Upload to pypi.
-  # More precisely. Upload pypi the master builds, and to test-pypi any other builds.
+  # More precisely. Upload pypi the master builds, and to test-pypi the test builds.
   # See more at https://stackoverflow.com/a/39155147/2506522
   - IF %APPVEYOR_REPO_BRANCH%==master (
       twine upload -r pypi dist\\wexpect*.tar.gz
     )
-    IF %APPVEYOR_REPO_BRANCH%==test (
+  - IF %APPVEYOR_REPO_BRANCH%==test (
       twine upload -r testpypi dist\\wexpect*.tar.gz
     )
    
\ No newline at end of file