From 3a6eb8462f2a1c0cbdefd18da5a267521a02cb05 Mon Sep 17 00:00:00 2001 From: Dean Ellis Date: Fri, 13 Sep 2024 12:24:44 +0100 Subject: [PATCH] Try to fix mac freetype/image issue --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 342e71f84e2..7ea1d7afdd2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -51,9 +51,8 @@ jobs: - name: install wine64 on macos run: | brew install wine-stable p7zip freeimage freetype - ls /opt/homebrew/lib/libfree* - ln -s /opt/homebrew/lib/libfreeimage.dylib /usr/local/lib/libfreeimage.dylib - ln -s /opt/homebrew/lib/libfreetype..6dylib /usr/local/lib/libfreetype.dylib + sudo ln -s /opt/homebrew/lib/libfreeimage.dylib /usr/local/lib/libfreeimage.dylib + sudo ln -s /opt/homebrew/lib/libfreetype..6dylib /usr/local/lib/libfreetype.dylib if: runner.os == 'macOS' - name: Setup Wine