From: Viktor Szakats Date: Mon, 10 Feb 2025 01:50:06 +0000 (+0100) Subject: GHA/linux: hide progress bar in `apt remove` X-Git-Tag: curl-8_12_1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1f81adf48fe4e25140694191dfa95339487e662;p=thirdparty%2Fcurl.git 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 --- 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