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 58f9689254a355de1629080d9562a3f4d9645cb6
Author: Kim Woelders <[email protected]>
AuthorDate: Thu Nov 24 21:40:19 2022 +0100
e_gen_menu: Fix menu generation
Was broken by the new IPC input parser that now deals more or less
properly with quoting.
---
scripts/e_gen_menu | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/e_gen_menu b/scripts/e_gen_menu
index 5c616558..44f7ad35 100755
--- a/scripts/e_gen_menu
+++ b/scripts/e_gen_menu
@@ -344,7 +344,7 @@ def MakeAppsMenu(type):
def EeshCall(cmd):
# os.system(f'eesh -e "{cmd}" >/dev/null')
- subprocess.run(["eesh", "-e", cmd], stdout=subprocess.DEVNULL)
+ subprocess.run(["eesh", "-e"] + cmd.split(), stdout=subprocess.DEVNULL)
# Close all windows named "Message" (we assume they are E dialogs)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.