From 3fea6c7347d8f2e433d2cab649735c5a4771d0c4 Mon Sep 17 00:00:00 2001 From: Beraldo Leal Date: Tue, 15 Aug 2023 15:32:13 -0400 Subject: [PATCH] ci: fix missing bc error during setup Currently this script needs bc to run before installing dependencies. Fixes: #5744 Signed-off-by: Beraldo Leal --- .ci/setup_env_ubuntu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/setup_env_ubuntu.sh b/.ci/setup_env_ubuntu.sh index 7632d2419..8667ee841 100755 --- a/.ci/setup_env_ubuntu.sh +++ b/.ci/setup_env_ubuntu.sh @@ -21,8 +21,8 @@ sudo -E apt -y remove --purge man-db echo "Try to preemptively fix broken dependencies, if any" sudo -E apt --fix-broken install -y -echo "Install chronic" -sudo -E apt install -y moreutils +echo "Install chronic and bc" +sudo -E apt install -y moreutils bc declare -A minimal_packages=( \ [spell-check]="hunspell hunspell-en-gb hunspell-en-us pandoc" \