summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-06-09 03:13:41 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-06-09 03:13:41 +0200
commit2eccec6636b4d78ac3b5f4453a00a1e1d6db61d9 (patch)
treee566de3e1784d7a5c1cfeede4746e0d74acc3c61 /.ci
parentFix scrolling in image dialog (diff)
downloadnheko-2eccec6636b4d78ac3b5f4453a00a1e1d6db61d9.tar.xz
Try to work around macdeployqt missing packages
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/macos/build.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.ci/macos/build.sh b/.ci/macos/build.sh
index 1d703a85..1c60015e 100755
--- a/.ci/macos/build.sh
+++ b/.ci/macos/build.sh
@@ -6,7 +6,7 @@ set -ue
 #TAG=$(git tag -l --points-at HEAD)
 
 # Add Qt binaries to path
-PATH="$(brew --prefix qt6):${PATH}"
+PATH="$(brew --prefix qt6)/bin/:${PATH}"
 export PATH
 
 CMAKE_PREFIX_PATH="$(brew --prefix qt6)"
@@ -29,4 +29,6 @@ cmake --build build
     cp libqtjdenticon.dylib ../nheko.app/Contents/MacOS
   )
   "$(brew --prefix qt6)/bin/macdeployqt" nheko.app -always-overwrite -qmldir=../resources/qml/
+  # workaround for https://bugreports.qt.io/browse/QTBUG-100686
+  cp "$(brew --prefix brotli)/lib/libbrotlicommon.1.dylib" nheko.app/Contents/Frameworks/libbrotlicommon.1.dylib
 )