GHA/linux: hide progress bar in apt remove

Also switch to `apt-get` and drop redundant `--yes` for conistency with
other GHA scripts.

Follow-up to b13e9066b3 #16127
Closes #16281
This commit is contained in:
Viktor Szakats 2025-02-10 02:50:06 +01:00
parent 973ffaa83f
commit c1f81adf48
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -589,7 +589,7 @@ jobs:
- name: 'configure'
run: |
[[ '${{ matrix.build.install_steps }}' = *'awslc'* ]] && sudo apt remove --yes libssl-dev
[[ '${{ matrix.build.install_steps }}' = *'awslc'* ]] && sudo apt-get -o Dpkg::Use-Pty=0 purge libssl-dev
if [ -n '${{ matrix.build.PKG_CONFIG_PATH }}' ]; then
export PKG_CONFIG_PATH="${{ matrix.build.PKG_CONFIG_PATH }}"
fi