diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index e2758877..a0425ffa 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -37,7 +37,10 @@ jobs: if: matrix.os != 'ubuntu-22.04' - name: Install Linux Dependencies - run: sudo /bin/sh -c 'set -e; apt update; apt install libopencv-dev libgl-dev g++-12 ninja-build' + run: | + set -e + apt update + apt install libopencv-dev libgl-dev g++-12 ninja-build if: matrix.os == 'ubuntu-22.04' - name: Configure |