From 7e5b87bbdce6039ae10ce8191b5cebc1a75ec575 Mon Sep 17 00:00:00 2001 From: LordGrey Date: Sun, 26 Mar 2023 14:44:25 +0000 Subject: [PATCH] Add ftdilib mac os dependency --- .ci/ci_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ci_install.sh b/.ci/ci_install.sh index 86c6ffd4..69e34dd8 100755 --- a/.ci/ci_install.sh +++ b/.ci/ci_install.sh @@ -35,6 +35,6 @@ function installAndUpgrade() if [[ $CI_NAME == 'osx' || $CI_NAME == 'darwin' ]]; then echo "Install dependencies" brew update - dependencies=("qt5" "python" "libusb" "cmake" "doxygen") + dependencies=("qt5" "python" "libusb" "cmake" "doxygen", "libftdi") installAndUpgrade "${dependencies[@]}" fi