diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-15 09:02:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 09:02:53 +0100 |
commit | 2f32133ad5e13503c56bc5c910407a27cc23908b (patch) | |
tree | 486a47945aa83e2842f54dce2e9f153d396a1886 /.ci | |
parent | Merge pull request #7565 from liushuyu/fix-linux-decoding (diff) | |
download | yuzu-2f32133ad5e13503c56bc5c910407a27cc23908b.tar yuzu-2f32133ad5e13503c56bc5c910407a27cc23908b.tar.gz yuzu-2f32133ad5e13503c56bc5c910407a27cc23908b.tar.bz2 yuzu-2f32133ad5e13503c56bc5c910407a27cc23908b.tar.lz yuzu-2f32133ad5e13503c56bc5c910407a27cc23908b.tar.xz yuzu-2f32133ad5e13503c56bc5c910407a27cc23908b.tar.zst yuzu-2f32133ad5e13503c56bc5c910407a27cc23908b.zip |
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/windows/docker.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 584b9b39f..155d8a5c8 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -41,11 +41,12 @@ for i in package/*.exe; do done pip3 install pefile -python3 .ci/scripts/windows/scan_dll.py package/*.exe package/imageformats/*.dll "package/" +python3 .ci/scripts/windows/scan_dll.py package/*.exe "package/" +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)/bin" find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -v {} package/ ';' # copy libraries from yuzu.exe path |