From cacd064893b15662f49119065a137b6a5ced6f90 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Thu, 9 Jun 2022 11:35:25 -0400 Subject: [PATCH] Build: Uninstall pipenv and virtualenv after dependencies are installed This reduces the size of the AppImage by 7.4% --- build_scripts/appimage/appimage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_scripts/appimage/appimage.sh b/build_scripts/appimage/appimage.sh index ce926586d..a7415593c 100755 --- a/build_scripts/appimage/appimage.sh +++ b/build_scripts/appimage/appimage.sh @@ -85,7 +85,7 @@ install_monkey_island_python_dependencies() { popd || handle_error log_message "Uninstalling pipenv (build dependency only)" - "$APPDIR"/AppRun -m pip uninstall pipenv virtualenv || handle_error + "$APPDIR"/AppRun -m pip uninstall --yes pipenv virtualenv || handle_error }