Skip to content

Commit

Permalink
build: use curl
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Mar 29, 2024
1 parent 89cdb32 commit 0347ad1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ jobs:
if: steps.cache-opencv-source.outputs.cache-hit != 'true'
shell: bash
run: |
wget https://github.com/opencv/opencv/archive/4.9.0.zip -O ./opencv/opencv-4.9.0.zip
wget https://github.com/opencv/opencv_contrib/archive/4.9.0.zip -O ./opencv/opencv_contrib-4.9.0.zip
mkdir -p ./opencv
curl https://github.com/opencv/opencv/archive/4.9.0.zip --output ./opencv/opencv-4.9.0.zip
curl https://github.com/opencv/opencv_contrib/archive/4.9.0.zip --output ./opencv/opencv_contrib-4.9.0.zip
- name: Extract OpenCV source
if: steps.cache-opencv-source.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit 0347ad1

Please sign in to comment.