@@ -125,26 +125,26 @@ after_success: |
125
125
126
126
if [[ $ENABLE_CONTRIB == 0 ]]; then
127
127
if [[ $ENABLE_HEADLESS == 0 ]]; then
128
- echo "This is default build. Deployment will be done to to PyPI entry opencv-python."
128
+ echo "This is default build. Deployment will be done to PyPI entry opencv-python."
129
129
else
130
- echo "This is headless contrib build. Deployment will be done to to PyPI entry opencv-python-headless."
130
+ echo "This is headless contrib build. Deployment will be done to PyPI entry opencv-python-headless."
131
131
fi
132
132
else
133
133
if [[ $ENABLE_HEADLESS == 0 ]]; then
134
- echo "This is contrib build. Deployment will be done to to PyPI entry opencv-contrib-python."
134
+ echo "This is contrib build. Deployment will be done to PyPI entry opencv-contrib-python."
135
135
else
136
- echo "This is headless contrib build. Deployment will be done to to PyPI entry opencv-contrib-python-headless."
136
+ echo "This is headless contrib build. Deployment will be done to PyPI entry opencv-contrib-python-headless."
137
137
fi
138
138
fi
139
139
140
140
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
141
141
if [[ $SDIST == 1 ]]; then
142
142
pip install twine
143
- twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv *
143
+ twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/openc *
144
144
else
145
145
pip install --user twine
146
146
pip install --user --upgrade six
147
- twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv *
147
+ twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/openc *
148
148
fi
149
149
150
150
fi
@@ -157,9 +157,9 @@ after_success: |
157
157
/usr/bin/python -m pip install --user -U -I twine
158
158
159
159
if [[ $SDIST == 1 ]]; then
160
- /usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv *
160
+ /usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/openc *
161
161
else
162
- /usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv *
162
+ /usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/openc *
163
163
fi
164
164
165
165
fi
@@ -180,7 +180,7 @@ after_success: |
180
180
if [[ $SDIST == 1 ]]; then
181
181
az storage blob upload-batch -d ${TRAVIS_COMMIT} -s ${TRAVIS_BUILD_DIR}/dist --pattern *.gz
182
182
else
183
- az storage blob upload-batch -d ${TRAVIS_COMMIT} -s ${TRAVIS_BUILD_DIR}/wheelhouse --pattern opencv *.whl
183
+ az storage blob upload-batch -d ${TRAVIS_COMMIT} -s ${TRAVIS_BUILD_DIR}/wheelhouse --pattern openc *.whl
184
184
fi
185
185
fi
186
186
0 commit comments