From 32e80e9ef3cb58c8643e7b91f2d637d72c440d90 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 28 Apr 2024 10:55:42 +0100 Subject: [PATCH] Added sudo to the make install. --- .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 b52049032..78dcc772c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: make -j 3 && sudo make install elif [ "$RUNNER_OS" == "macOS" ]; then cmake . -DBUILD_SHARED_LIBS=${{matrix.build-shared}} - make -j 4 && make install + make -j 4 && sudo make install else echo "$RUNNER_OS not supported" exit 1