summaryrefslogtreecommitdiffstats
path: root/.ci/scripts
diff options
context:
space:
mode:
authorgxcreator <gxcreator@gmail.com>2020-04-23 20:32:16 +0200
committergxcreator <gxcreator@gmail.com>2020-04-23 20:45:07 +0200
commit8af62c9997f8255f22bfa70545878db2344a44da (patch)
treeaf06dd4dcf095f5c2b591f5eeedc58658dfb6a27 /.ci/scripts
parentkernel: memory: Improve implementation of device shared memory. (#3707) (diff)
downloadyuzu-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
Diffstat (limited to '.ci/scripts')
-rwxr-xr-x[-rw-r--r--].ci/scripts/windows/docker.sh8
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