File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -762,11 +762,11 @@ after_success: |
762
762
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
763
763
if [[ $SDIST == 1 ]]; then
764
764
pip install twine
765
- twine upload -u ${USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
765
+ twine upload -u ${PYPI_USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
766
766
else
767
767
pip install --user twine
768
768
pip install --user --upgrade six
769
- twine upload -u ${USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
769
+ twine upload -u ${PYPI_USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
770
770
fi
771
771
772
772
fi
@@ -779,9 +779,9 @@ after_success: |
779
779
/usr/bin/python -m pip install --user -U -I twine
780
780
781
781
if [[ $SDIST == 1 ]]; then
782
- /usr/bin/python -m twine upload -u ${USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
782
+ /usr/bin/python -m twine upload -u ${PYPI_USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
783
783
else
784
- /usr/bin/python -m twine upload -u ${USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
784
+ /usr/bin/python -m twine upload -u ${PYPI_USER } -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
785
785
fi
786
786
787
787
fi
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ function pre_build {
92
92
echo " Running for OSX"
93
93
94
94
local CACHE_STAGE; (echo " $TRAVIS_BUILD_STAGE_NAME " | grep -qiF " final" ) || CACHE_STAGE=1
95
- export USER=travis
95
+
96
96
# after the cache stage, all bottles and Homebrew metadata should be already cached locally
97
97
if [ -n " $CACHE_STAGE " ]; then
98
98
brew update
You can’t perform that action at this time.
0 commit comments