Build: Uninstall pipenv and virtualenv after dependencies are installed

This reduces the size of the AppImage by 7.4%
This commit is contained in:
Mike Salvatore 2022-06-09 11:35:25 -04:00
parent 73d20a6a6a
commit cacd064893
1 changed files with 1 additions and 1 deletions

View File

@ -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
}