Skip to content

Commit ddbe470

Browse files
committed
package-apps now use --no-install-recommends
Prevents other KDE desktop parts from being installed with Plasma Discover, shouldn't affect anything else
1 parent 6d66d03 commit ddbe470

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ elif [ "$1" == 'install' ] || [ "$1" == 'uninstall' ];then
810810
packages_to_install=$(pkgapp_packages_required "$app")
811811
[ -z "$packages_to_install" ] && error "It appears $app does not have any packages that can be installed on your system."
812812

813-
appscript=(bash -c -o pipefail "apt_lock_wait ; sudo -E apt-get $(echo "$action" | sed 's/uninstall/purge --autoremove/g') -yf $packages_to_install 2>&1 | less_apt")
813+
appscript=(bash -c -o pipefail "apt_lock_wait ; sudo -E apt-get $(echo "$action" | sed 's/uninstall/purge --autoremove/g ; s/install/install --no-install-recommends/g') -yf $packages_to_install 2>&1 | less_apt")
814814

815815
#fix edge case: new will_reinstall function avoids a reinstall if packages to install do not change.
816816
#unfortunately updater script does not source the new api so chromium is being reinstalled after we added "| chromium" to the packages file.

0 commit comments

Comments
 (0)