From b92a3b8df5f7f2c4b87d3150902bd81303ecafc3 Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Fri, 28 Oct 2022 10:13:41 -0400 Subject: [PATCH] Make sure we use qt5 macdeployqt --- .ci/macos/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/macos/build.sh b/.ci/macos/build.sh index ef95181c..5724b438 100755 --- a/.ci/macos/build.sh +++ b/.ci/macos/build.sh @@ -28,5 +28,5 @@ cmake --build build make -j 4 cp libqtjdenticon.dylib ../nheko.app/Contents/MacOS ) - macdeployqt nheko.app -always-overwrite -qmldir=../resources/qml/ + "$(brew --prefix qt5)/bin/macdeployqt" nheko.app -always-overwrite -qmldir=../resources/qml/ )