diff options
| -rw-r--r-- | .github/workflows/validate.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 81742fd94..cadaeb280 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -153,9 +153,10 @@ jobs: cd .. - name: Installing libc++ # This is not used for zen builds, but gperf/meson are used by some dependencies and they require it + shell: bash run: | - sudo apt-get update - sudo apt-get -y install libc++-dev + sudo apt update + sudo apt install -y libc++-dev - name: Config run: | |