Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
ci: fix missing bc error during setup
Browse files Browse the repository at this point in the history
Currently this script needs bc to run before installing dependencies.

Fixes: #5744

Signed-off-by: Beraldo Leal <[email protected]>
  • Loading branch information
beraldoleal committed Aug 15, 2023
1 parent de2c828 commit 3fea6c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/setup_env_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit 3fea6c7

Please sign in to comment.