Explorar o código

Merge pull request #8540 from lat9nq/copy-nv-ffmpeg

ci/windows: Copy what of FFmpeg not already present
liamwhite %!s(int64=4) %!d(string=hai) anos
pai
achega
53fb4a78a3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      .ci/scripts/windows/docker.sh

+ 1 - 1
.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/ ';'