Skip to content

Commit 9db036c

Browse files
authored
[CI] fix windows CI (#243)
Signed-off-by: Anton Dukhovnikov <antond@wetafx.co.nz>
1 parent 730fa59 commit 9db036c

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

build_scripts/install_deps_windows.bash

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ VCPKG_PYTHON="C:/vcpkg/installed/x64-windows/tools/python3/python.exe"
2020
"$VCPKG_PYTHON" -m ensurepip --upgrade
2121
"$VCPKG_PYTHON" -m pip install pytest
2222

23-
curl --silent --location --output ./exiftool.zip https://sourceforge.net/projects/exiftool/files/exiftool-13.47_64.zip
23+
curl --silent --location --output ./exiftool_version.txt https://sourceforge.net/projects/exiftool/files/ver.txt
24+
exiftool_version=`cat ./exiftool_version.txt`
25+
26+
curl --silent --location --output ./exiftool.zip https://sourceforge.net/projects/exiftool/files/exiftool-${exiftool_version}_64.zip
2427
unzip ./exiftool.zip
25-
mv ./exiftool-13.47_64 ./exiftool
28+
29+
mv ./exiftool-${exiftool_version}_64 ./exiftool
2630
mv ./exiftool/exiftool\(-k\).exe ./exiftool/exiftool.exe

0 commit comments

Comments
 (0)