From ecf41040c669819f907f4835e83f11983c226405 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 4 Apr 2025 22:31:24 +0200 Subject: fix(modules/taskwarrior): Correctly detect if hook debug is set `task _get` is not influenced by a temporary CLI override. --- modules/by-name/ta/taskwarrior/module.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'modules/by-name/ta') diff --git a/modules/by-name/ta/taskwarrior/module.nix b/modules/by-name/ta/taskwarrior/module.nix index ec3152b7..f23733a4 100644 --- a/modules/by-name/ta/taskwarrior/module.nix +++ b/modules/by-name/ta/taskwarrior/module.nix @@ -34,8 +34,13 @@ } enable_hook_dbg() { - debug_hooks="$(task _get rc.debug.hooks)" - [ "$debug_hooks" ] && [ "$debug_hooks" -ge 1 ] && set -x + # TODO: We should probably be smarter with the debug detection <2025-04-04> + if echo "$2" | grep --quite 'rc.debug.hooks='; then + set -x + mkdir --parents "~/.cache/task" + exec >>"~/.cache/task/hook.log.$0" + exec 2>>""~/.cache/task/hook.log.$0" + fi } addedCall() { -- cgit 1.4.1