From 0491017e0e7758e021767856d3adf833455ae2e3 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Tue, 30 Jul 2024 10:49:30 -0600 Subject: [PATCH] app-install-data-ubuntu: update helper for ecne --- helpers/make-app-install-data-ubuntu | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/helpers/make-app-install-data-ubuntu b/helpers/make-app-install-data-ubuntu index 8fd73e0..5094a24 100644 --- a/helpers/make-app-install-data-ubuntu +++ b/helpers/make-app-install-data-ubuntu @@ -17,7 +17,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # -VERSION=4 +VERSION=5 . ./config @@ -25,7 +25,10 @@ VERSION=4 cp $DATA/applications.menu menu-data/applications.menu # We remove any info about non-free packages -grep -lr 'X-AppInstall-Section=(multiverse|restricted)' . | xargs -r rm +for i in multiverse restricted +do + grep -lr "X-AppInstall-Section=$i" . | xargs -r rm +done for i in firefox jockey ndisgtk chromium-browser bughugger testdrive menueditor lp-review-list groundcontrol gstreamer nvidia dell-recovery ubufox thunderbird do find -name *$i*xpm -exec rm {} \;