Skip to content

Commit 8d5aa2b

Browse files
committed
fix twine upload command
1 parent bad5cb1 commit 8d5aa2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -779,9 +779,9 @@ after_success: |
779779
/usr/bin/python -m pip install --user -U -I twine
780780
781781
if [[ $SDIST == 1 ]]; then
782-
/usr/bin/python -m upload -u ${USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
782+
/usr/bin/python -m twine upload -u ${USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
783783
else
784-
/usr/bin/python -m upload -u ${USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
784+
/usr/bin/python -m twine upload -u ${USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
785785
fi
786786
787787
fi

0 commit comments

Comments
 (0)