From e98d6a6eb693e5261d98583570b24e6cdbf2690e Mon Sep 17 00:00:00 2001 From: kxtzownsu Date: Sun, 9 Mar 2025 16:28:04 -0400 Subject: [PATCH] fix venv and setup-python --- Makefile | 1 - scripts/venv.sh | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e7fbeff..a7369bc 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,6 @@ setup-python: build-packed-data: mkdir -p out/PKIMetadata make venv - make setup-python ca-keys: cd httpmitm; bash generate_certs.sh diff --git a/scripts/venv.sh b/scripts/venv.sh index b566492..06750f3 100644 --- a/scripts/venv.sh +++ b/scripts/venv.sh @@ -5,4 +5,5 @@ if [ ! -e "${SCRIPT_DIR}/../.venv" ]; then fi source ${SCRIPT_DIR}/../.venv/bin/activate pip3 install protobuf +make setup-python bash