From c1f81adf48fe4e25140694191dfa95339487e662 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 10 Feb 2025 02:50:06 +0100 Subject: [PATCH] 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 b13e9066b3dfd65ba8aadc336232ae7832ac687a #16127 Closes #16281 --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index dcf23d14ae..3af33d3bb3 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 -- 2.47.3