From a0709f1bfc01321c63ccd2dd23b1dbf26d7a5100 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Fri, 23 Jul 2021 18:31:05 +0100 Subject: [PATCH] try install without sudo since macos won't sudo as admin --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e074c413..1cb61fa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -133,7 +133,7 @@ jobs: run: make V=0 check - name: Install libvips - run: sudo make V=0 install + run: make V=0 install - name: Rebuild the shared library cache if: contains(matrix.os, 'ubuntu')