From a525f474c146f0c9662fe3148394644f2bc52054 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 27 Jan 2025 10:26:40 +0100 Subject: [PATCH] CI GPUJPEG Win: upstream file name has changed --- .github/scripts/Windows/prepare_msys.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/scripts/Windows/prepare_msys.sh b/.github/scripts/Windows/prepare_msys.sh index 13fe48b96..0892b2172 100644 --- a/.github/scripts/Windows/prepare_msys.sh +++ b/.github/scripts/Windows/prepare_msys.sh @@ -89,9 +89,10 @@ install_deltacast() {( )} install_gpujpeg() {( + fname=GPUJPEG-Windows.zip wget --no-verbose \ -https://github.com/CESNET/GPUJPEG/releases/download/continuous/GPUJPEG.zip - unzip GPUJPEG.zip +https://github.com/CESNET/GPUJPEG/releases/download/continuous/"$fname" + unzip "./$fname" cp -r GPUJPEG/* /usr/local/ )}