From a5213aae45a5b23b6f42304312e0c80c4dcfb62e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20V=C3=A1vra?= Date: Wed, 5 Jun 2024 07:46:34 +0200 Subject: [PATCH] ci: Install python3-passlib as a dependency --- src/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build.sh b/src/build.sh index 18b9bda..b0a3c92 100755 --- a/src/build.sh +++ b/src/build.sh @@ -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