From dbdbbffa009696d0779a504cf66adbf1ace1265b Mon Sep 17 00:00:00 2001 From: Joseph Ferguson Date: Thu, 2 Oct 2025 11:16:48 -0700 Subject: [PATCH] Revert `dist-clean` for ruby-native-ext test this test is run on different debian bases so doesn't always have `apt-get dist-clean` --- test/tests/ruby-native-extension/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests/ruby-native-extension/run.sh b/test/tests/ruby-native-extension/run.sh index 53a1651b9f..be2a08e1d0 100755 --- a/test/tests/ruby-native-extension/run.sh +++ b/test/tests/ruby-native-extension/run.sh @@ -24,7 +24,7 @@ if ! docker run --rm --entrypoint sh "$image" -c 'command -v gcc' > /dev/null; t RUN set -eux; \ apt-get update; \ apt-get install -y --no-install-recommends gcc make libc6-dev; \ - apt-get dist-clean + rm -rf /var/lib/apt/lists/* EOD ;; esac