Skip to content

Commit 8e07602

Browse files
committed
fix paths
1 parent 8a11d3e commit 8e07602

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ install:
2929
- cd build
3030
- cmake --build . --config Release
3131
- cd ../..
32-
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then cp opencv\build\lib\RELEASE\*.pyd opencv-python/cv2; fi
33-
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then cp opencv\build\lib\python3\Release\*.pyd opencv-python/cv2; fi
32+
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then cp opencv/build/lib/RELEASE/*.pyd opencv-python/cv2; fi
33+
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then cp opencv/build/lib/python3/Release/*.pyd opencv-python/cv2; fi
3434
- python setup.py bdist_wheel --opencv-version "$opencv_version-$TRAVIS_BUILD_NUMBER"
3535

3636
before_script:
37-
- pip install --no-index --find-links=opencv-python\dist\ opencv-python
37+
- pip install --no-index --find-links=opencv-python/dist/ opencv-python
3838

3939
script:
4040
- cd tests

0 commit comments

Comments
 (0)