Skip to content

Commit de54fdc

Browse files
committed
last minor fixes (hopefully)
1 parent 68549d2 commit de54fdc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ script:
9797
after_success:
9898
# Upload wheels to pypi
9999
- pip install twine
100-
- if [ -n "$TRAVIS_TAG" ]; then twine upload -u ${USER} -p ${PASS} -r pypitest ${TRAVIS_BUILD_DIR}/wheelhouse/*; else echo "Tag not set, deployment skipped."; fi
100+
- if [ -n "$TRAVIS_TAG" ]; then twine upload -u ${USER} -p ${PASS} -r pypitest ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*; else echo "Tag not set, deployment skipped."; fi

appveyor.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,5 @@ artifacts:
108108
name: wheels
109109

110110
deploy_script:
111-
- if "%APPVEYOR_REPO_TAG%"=="true" (python -m twine upload -u %USER% -p %PASS% -r pypitest dist/*) else (echo "Tag not set, deployment skipped.")
111+
- cd %APPVEYOR_BUILD_FOLDER%
112+
- if "%APPVEYOR_REPO_TAG%"=="true" (python -m twine upload -u %USER% -p %PASS% -r pypitest dist/opencv*) else (echo "Tag not set, deployment skipped.")

0 commit comments

Comments
 (0)