This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit f7358aff2caf3da1914699262f7cff6e1247bf48
Author: Kim Woelders <[email protected]>
AuthorDate: Wed Mar 1 07:41:16 2023 +0100
e_gen_menu.pl: Fix for new IPC parser
Just keeping it working for comparison with new python version.
---
scripts/e_gen_menu.pl | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/e_gen_menu.pl b/scripts/e_gen_menu.pl
index ffa82946..c7146fa7 100755
--- a/scripts/e_gen_menu.pl
+++ b/scripts/e_gen_menu.pl
@@ -452,7 +452,7 @@ sub ReadDir {
# Close all windows named "Message" (we assume they are E dialogs)
sub CloseMessageWindows {
- system("eesh -e 'wop Message* close' >/dev/null");
+ system("eesh -e wop Message* close >/dev/null");
}
@@ -462,7 +462,7 @@ sub CloseMessageWindows {
$N = 0;
CloseMessageWindows();
-system("eesh -e \"dialog_ok Menus are being generated... Please Wait.\"");
+system("eesh -e dialog_ok 'Menus are being generated... Please Wait.'");
# Process old style GNOME directories
ProcessOldStyle("GNOME", "$OldGnomeDirs");
@@ -497,5 +497,5 @@ MakeEppsMenu("epplets.menu");
MakeAppsMenu("apps");
CloseMessageWindows();
-system("eesh -e 'menus reload'");
-system("eesh -e 'dialog_ok Menu generation complete.'");
+system("eesh -e menus reload");
+system("eesh -e dialog_ok Menu generation complete.");
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.