Skip to content

Commit

Permalink
ci: Install python3-passlib as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jakub-vavra-cz committed Jun 5, 2024
1 parent eb2ed9b commit a5213aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ function base_install_python {
# Install python3 if not available
if base_exec '[ ! -f /usr/bin/python3 ]'; then
if base_exec '[ -f /usr/bin/apt ]'; then
base_exec 'apt update && apt install -y python3 python3-apt && rm -rf /var/lib/apt/lists/*'
base_exec 'apt update && apt install -y python3 python3-apt python3-passlib&& rm -rf /var/lib/apt/lists/*'
else
base_exec 'dnf install -y python3 && dnf clean all'
base_exec 'dnf install -y python3 python3-passlib && dnf clean all'
fi
fi

Expand Down

0 comments on commit a5213aa

Please sign in to comment.