Skip to content

Commit

Permalink
Make tar less noisy
Browse files Browse the repository at this point in the history
Signed-off-by: Wiktor Kwapisiewicz <[email protected]>
  • Loading branch information
wiktor-k committed Nov 29, 2023
1 parent 1dca147 commit 14673ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/before-script-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ if [ -f /usr/bin/yum ]; then

cd /tmp && \
curl --fail -sSL -O https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.bz2 && \
tar xvf gmp-${GMP_VERSION}.tar.bz2 && \
tar xf gmp-${GMP_VERSION}.tar.bz2 && \
cd gmp-${GMP_VERSION} && \
./configure --prefix=$PREFIX && \
make && make install

cd /tmp &&
curl --fail -sSL -O https://ftp.gnu.org/gnu/nettle/nettle-${NETTLE_VERSION}.tar.gz && \
tar xvf nettle-${NETTLE_VERSION}.tar.gz && \
tar xf nettle-${NETTLE_VERSION}.tar.gz && \
cd nettle-${NETTLE_VERSION} && \
./configure --prefix=$PREFIX \
--with-lib-path=$PREFIX/lib \
Expand All @@ -40,7 +40,7 @@ if [ -f /usr/bin/yum ]; then

cd /tmp &&
curl --fail -sSL -O https://pcsclite.apdu.fr/files/pcsc-lite-${PCSCLITE_VERSION}.tar.bz2 && \
tar xvf pcsc-lite-${PCSCLITE_VERSION}.tar.bz2 && \
tar xf pcsc-lite-${PCSCLITE_VERSION}.tar.bz2 && \
cd pcsclite-${PCSCLITE_VERSION} && \
./configure --prefix=$PREFIX \
--enable-filter \
Expand Down

0 comments on commit 14673ad

Please sign in to comment.