From 3bb0fec986ddd993704f72cc1d80acac23b956ff Mon Sep 17 00:00:00 2001 From: Thanatomanic <6567747+Thanatomanic@users.noreply.github.com> Date: Sat, 12 Feb 2022 06:15:01 +0100 Subject: [PATCH] Change lensfun path in automated Windows build Fixes #6426 This aligns the paths to earlier builds, so that the path in people's `options` file is more likely to work correctly, immediately. --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index aabdf70d7..f3f98b853 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -68,7 +68,7 @@ jobs: -DCMAKE_BUILD_TYPE='${{matrix.build_type}}' \ -DCACHE_NAME_SUFFIX="$CACHE_SUFFIX" \ -DPROC_TARGET_NUMBER="1" \ - -DLENSFUNDBDIR="./share/lensfun/version_1" \ + -DLENSFUNDBDIR="share/lensfun" \ .. echo "Recording filtered ref name." @@ -87,7 +87,7 @@ jobs: echo "Creating Lensfun directory in the build directory." mkdir -p 'build/${{matrix.build_type}}/share' echo "Copying Lensfun database to the build directory." - cp -R "/C/msys2/msys64/mingw64/var/lib/lensfun-updates" 'build/${{matrix.build_type}}/share/lensfun' + cp -R "/C/msys2/msys64/mingw64/var/lib/lensfun-updates/version_1" 'build/${{matrix.build_type}}/share/lensfun' - name: Restore GDB from cache id: gdb-cache