diff options
| author | Liam Mitchell <[email protected]> | 2025-07-30 20:40:06 +0000 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-07-30 20:40:06 +0000 |
| commit | 3141541886259534a6c46521e4a3be7f147afd9f (patch) | |
| tree | a1ad319225a430fcd1f3a035624e897fb42a74e1 /.github/workflows/validate.yml | |
| parent | Install libc++-dev during CI in order to build libsystemd properly (diff) | |
| download | zen-3141541886259534a6c46521e4a3be7f147afd9f.tar.xz zen-3141541886259534a6c46521e4a3be7f147afd9f.zip | |
Use apt instead of apt-get for installing system packages
Diffstat (limited to '.github/workflows/validate.yml')
| -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: | |