Skip to content

Commit a0b34ae

Browse files
committed
1 parent ae839fa commit a0b34ae

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

_ci-linux-debian.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,21 +104,20 @@ elif [[ "${CW_CONFIG:-}" = *'linux'* ]]; then
104104
fi
105105

106106
apt-get --option Dpkg::Use-Pty=0 --yes update
107-
apt-get --option Dpkg::Use-Pty=0 --yes install --no-install-suggests --no-install-recommends eatmydata
108107
# shellcheck disable=SC2086
109-
eatmydata apt-get --option Dpkg::Use-Pty=0 --yes install --no-install-suggests --no-install-recommends \
108+
apt-get --option Dpkg::Use-Pty=0 --yes install --no-install-suggests --no-install-recommends \
110109
curl ca-certificates git gpg gpg-agent patch ssh rsync python3-pefile make cmake ninja-build \
111110
libssl-dev zlib1g-dev \
112111
zip xz-utils time jq secure-delete ${extra}
113112

114113
if [ -n "${dl}" ]; then
115114
# shellcheck disable=SC2086
116-
eatmydata apt-get --option Dpkg::Use-Pty=0 --yes download ${dl}
115+
apt-get --option Dpkg::Use-Pty=0 --yes download ${dl}
117116
# https://deb.debian.org/debian/pool/main/l/llvm-toolchain-17/libclang-rt-17-dev_17.0.5-1_arm64.deb -> libclang-rt-17-dev_1%3a17.0.5-1_arm64.deb
118117
# libclang-common-15-dev_1%3a15.0.6-4+b1_amd64.deb
119118
for f in ./*.deb; do
120-
eatmydata dpkg-deb --contents "${f}"
121-
eatmydata dpkg-deb --extract --verbose "${f}" my-pkg
119+
dpkg-deb --contents "${f}"
120+
dpkg-deb --extract --verbose "${f}" my-pkg
122121
done
123122
if [ ! -d 'my-pkg/usr/lib/clang' ]; then
124123
ln -s -f "llvm${CW_CCSUFFIX}/lib/clang" 'my-pkg/usr/lib/clang'

0 commit comments

Comments
 (0)