From e6caf150b309a576ce016b589cea203c871866bc Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 10 Nov 2025 11:31:05 +0000 Subject: [PATCH] ci: add moreutils to lint job Makes the sponge utility available for an upcoming scripted-diff. --- ci/lint/01_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/lint/01_install.sh b/ci/lint/01_install.sh index 0d8cca98252..fc422675e30 100755 --- a/ci/lint/01_install.sh +++ b/ci/lint/01_install.sh @@ -18,7 +18,8 @@ ${CI_RETRY_EXE} apt-get update # - curl/xz-utils (to install shellcheck) # - git (used in many lint scripts) # - gpg (used by verify-commits) -${CI_RETRY_EXE} apt-get install -y cargo curl xz-utils git gpg +# - moreutils (used by scripted-diff) +${CI_RETRY_EXE} apt-get install -y cargo curl xz-utils git gpg moreutils PYTHON_PATH="/python_build" if [ ! -d "${PYTHON_PATH}/bin" ]; then