summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel L2021-11-25 02:24:11 +0100
committerDaniel L2021-11-25 02:24:11 +0100
commit25f0f184cd6362d9be2d3181201d0731192e5bda (patch)
treebce366d724019d797431f0cf2cd44f52ec9db39c
parent80951d4c3af367453d49599f7fe5fb951f614d81 (diff)
downloadaur-25f0f184cd6362d9be2d3181201d0731192e5bda.tar.gz
Fix: python dependencies
-rw-r--r--powershell-empire.install3
1 files changed, 2 insertions, 1 deletions
diff --git a/powershell-empire.install b/powershell-empire.install
index 517136369692..7ec8a6fb11e7 100644
--- a/powershell-empire.install
+++ b/powershell-empire.install
@@ -2,8 +2,9 @@ post_install() {
#installing python depends into venv
cd /usr/share/powershell-empire
virtualenv -p python3 env
- pip3 install setuptools==57
source env/bin/activate
+ # setuptools 57 needed because >= 58 breaks requirements
+ pip3 install setuptools==57
pip3 install -r "/etc/powershell-empire/requirements.txt"
deactivate