We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8706c18 commit f0977c2Copy full SHA for f0977c2
.github/workflows/test-opencvsharp.yml
@@ -66,7 +66,8 @@ jobs:
66
if [[ "${{ matrix.os }}" == osx* ]]; then
67
export DYLD_LIBRARY_PATH=${{ github.workspace }}/opencvsharp/lib:$DYLD_LIBRARY_PATH
68
elif [[ "${{ matrix.os }}" == win* ]]; then
69
- export PATH=${{ github.workspace }}/opencvsharp/lib:$PATH
+ export PATH="$(cygpath -u "${{ github.workspace }}/opencvsharp/lib")":$PATH
70
+ echo "PATH=$PATH"
71
else
72
export LD_LIBRARY_PATH=${{ github.workspace }}/opencvsharp/lib:$LD_LIBRARY_PATH
73
fi
0 commit comments