diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-05 07:46:24 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-05 07:46:24 +0200 |
commit | a73167a7a141524b5c92aa985e499fedfef5e2fa (patch) | |
tree | 0e802f83cd44284230b1ded47cccba46056bc214 /modules | |
parent | fix(modules/taskwarrior/mkHook): Fix shellcheck issues (diff) | |
download | nixos-config-a73167a7a141524b5c92aa985e499fedfef5e2fa.zip |
fix(modules/taskwarrior/mkHook): Use correct `grep` silencing argument
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/ta/taskwarrior/module.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name/ta/taskwarrior/module.nix b/modules/by-name/ta/taskwarrior/module.nix index 354d3724..c5549ac9 100644 --- a/modules/by-name/ta/taskwarrior/module.nix +++ b/modules/by-name/ta/taskwarrior/module.nix @@ -35,7 +35,7 @@ enable_hook_dbg() { # TODO: We should probably be smarter with the debug detection <2025-04-04> - if echo "$2" | grep --quite 'rc.debug.hooks='; then + if echo "$2" | grep --quiet 'rc.debug.hooks='; then set -x mkdir --parents "$HOME/.cache/task" exec >>"$HOME/.cache/task/hook.log.$1" |