From 8511f65bd0310e22b819d7af17626cf54afc51a1 Mon Sep 17 00:00:00 2001 From: John Ky Date: Thu, 13 Oct 2022 20:08:29 +1100 Subject: [PATCH] Fix MacOS GHA CI --- .github/workflows/haskell.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 4c842b827bc..96273fc60fa 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -150,13 +150,13 @@ jobs: - name: "List all pkg-config packages" run: | - echo "=== Package list ===" - pkg-config --list-all - if [ "${{ runner.os }}" == "macOS" ]; then echo "=== Not printing every package detail in MacOS" # due to the location of the installed libraries this fails on MacOS with stuff not related to us else + echo "=== Package list ===" + pkg-config --list-all + echo "=== Package details ===" for x in $(pkg-config --list-all | cut -d ' ' -f 1); do echo "# $x"