diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-07-15 02:44:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 02:44:00 +0200 |
commit | 53fb4a78a3ab73b4233464b74be5fcf53b0424d0 (patch) | |
tree | 3a3d093cb73b4dfd34e2cf21d8b6fb0b5d83dffd /.ci/scripts | |
parent | Merge pull request #8539 from Morph1984/gha-update-actions (diff) | |
parent | ci/windows: Copy what of FFmpeg not already present (diff) | |
download | yuzu-53fb4a78a3ab73b4233464b74be5fcf53b0424d0.tar yuzu-53fb4a78a3ab73b4233464b74be5fcf53b0424d0.tar.gz yuzu-53fb4a78a3ab73b4233464b74be5fcf53b0424d0.tar.bz2 yuzu-53fb4a78a3ab73b4233464b74be5fcf53b0424d0.tar.lz yuzu-53fb4a78a3ab73b4233464b74be5fcf53b0424d0.tar.xz yuzu-53fb4a78a3ab73b4233464b74be5fcf53b0424d0.tar.zst yuzu-53fb4a78a3ab73b4233464b74be5fcf53b0424d0.zip |
Diffstat (limited to '')
-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 d670fe47d..5bd5f0b6b 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -65,7 +65,7 @@ python3 .ci/scripts/windows/scan_dll.py package/*.exe package/imageformats/*.dll # copy FFmpeg libraries EXTERNALS_PATH="$(pwd)/build/externals" 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/ ';' +find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -nv {} package/ ';' # copy libraries from yuzu.exe path find "$(pwd)/build/bin/" -type f -regex ".*\.dll" -exec cp -v {} package/ ';' |