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 6a66d7a2f6aded9f2e69d56c56b8ed6d815e2eca
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Thu Oct 12 09:03:31 2023 +0200

    actions: Add debug in Eexec()
---
 src/actions.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/actions.c b/src/actions.c
index 33569468..dc5793ef 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -1,6 +1,6 @@
 /*
  * Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors
- * Copyright (C) 2004-2022 Kim Woelders
+ * Copyright (C) 2004-2023 Kim Woelders
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to
@@ -78,6 +78,9 @@ Eexec(const char *cmd)
 
    lst = StrlistFromString(cmd, ' ', &num);
 
+   if (EDebug(EDBUG_TYPE_EXEC))
+      Eprintf("%s: '%s'\n", __func__, cmd);
+
    execvp(lst[0], lst);
 
    StrlistFree(lst, num);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to