diff options
author | liushuyu <liushuyu011@gmail.com> | 2021-12-12 02:56:18 -0700 |
---|---|---|
committer | liushuyu <liushuyu011@gmail.com> | 2021-12-13 17:48:05 -0700 |
commit | 37f1c766135557387777c3a3f011f824c36015c5 (patch) | |
tree | 6883b3b1a0b27af5b8fc945cb12c20b69e4af78c | |
parent | f91b6fbbcb56870f912540550c9517800c152a46 (diff) |
CI: fix MinGW installation step
-rwxr-xr-x | .ci/scripts/windows/docker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 155d8a5c8..298421a1a 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -46,7 +46,7 @@ python3 .ci/scripts/windows/scan_dll.py package/imageformats/*.dll "package/" # copy FFmpeg libraries EXTERNALS_PATH="$(pwd)/build/externals" -FFMPEG_DLL_PATH="$(find ${EXTERNALS_PATH} -maxdepth 1 -type d | grep ffmpeg)/bin" +FFMPEG_DLL_PATH="$(find ${EXTERNALS_PATH} -maxdepth 1 -type d | grep ffmpeg)/ffmpeg/bin" find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -v {} package/ ';' # copy libraries from yuzu.exe path |