From 73d20a6a6afaca43c6a2d18de286bfa861a42172 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Thu, 9 Jun 2022 11:27:41 -0400 Subject: [PATCH] Build: Uninstall pipenv from AppImage after dependencies are installed --- build_scripts/appimage/appimage.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build_scripts/appimage/appimage.sh b/build_scripts/appimage/appimage.sh index 388bc9bcb..ce926586d 100755 --- a/build_scripts/appimage/appimage.sh +++ b/build_scripts/appimage/appimage.sh @@ -83,6 +83,9 @@ install_monkey_island_python_dependencies() { pushd "$BUILD_DIR/monkey_island" || handle_error "$APPDIR"/AppRun -m pipenv --python "$APPDIR/AppRun" sync --system || handle_error popd || handle_error + + log_message "Uninstalling pipenv (build dependency only)" + "$APPDIR"/AppRun -m pip uninstall pipenv virtualenv || handle_error }