From ba67216acdf3726af6374723a51dc62be67d125a Mon Sep 17 00:00:00 2001 From: "Michal J. Gajda" Date: Tue, 12 Sep 2023 23:07:43 +0200 Subject: [PATCH] Fixed sudo brew on Mac. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44f04ce..5e7f703 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,8 +127,8 @@ jobs: - name: Install Asymptote [Mac] if: runner.os == 'macOS' run: | - sudo brew update - sudo brew install asymptote + brew update + brew install asymptote - name: Install Plots.jl toolkit [Linux] # Integration tests sometimes hang on MacOS and Windows if: matrix.os == 'ubuntu-latest'