diff options
author | gxcreator <gxcreator@gmail.com> | 2020-04-23 20:32:16 +0200 |
---|---|---|
committer | gxcreator <gxcreator@gmail.com> | 2020-04-23 20:45:07 +0200 |
commit | 8af62c9997f8255f22bfa70545878db2344a44da (patch) | |
tree | af06dd4dcf095f5c2b591f5eeedc58658dfb6a27 | |
parent | kernel: memory: Improve implementation of device shared memory. (#3707) (diff) | |
download | yuzu-8af62c9997f8255f22bfa70545878db2344a44da.tar yuzu-8af62c9997f8255f22bfa70545878db2344a44da.tar.gz yuzu-8af62c9997f8255f22bfa70545878db2344a44da.tar.bz2 yuzu-8af62c9997f8255f22bfa70545878db2344a44da.tar.lz yuzu-8af62c9997f8255f22bfa70545878db2344a44da.tar.xz yuzu-8af62c9997f8255f22bfa70545878db2344a44da.tar.zst yuzu-8af62c9997f8255f22bfa70545878db2344a44da.zip |
-rwxr-xr-x[-rw-r--r--] | .ci/scripts/windows/docker.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index beb554b65..a55541e10 100644..100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -29,7 +29,13 @@ echo 'Prepare binaries...' cd .. mkdir package -QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/' +if [ -d "/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/" ]; then + QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/' +else + #fallback to qt + QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt/plugins/platforms/' +fi + find build/ -name "yuzu*.exe" -exec cp {} 'package' \; # copy Qt plugins |