diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-04 22:07:23 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-04 22:07:23 +0200 |
commit | 051998c9684cf3f714710facff84fd799a16188b (patch) | |
tree | 06b7ffb57d0876f5129c7f61c3d0c67a69c8ae0a /modules/by-name/ta | |
parent | fix(modules/lf/ctpv/prev): Remove html preview (diff) | |
download | nixos-config-051998c9684cf3f714710facff84fd799a16188b.zip |
fix(modules/taskwarrior): Print hook `die` to stderr
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 4d015467..ec3152b7 100644 --- a/modules/by-name/ta/taskwarrior/module.nix +++ b/modules/by-name/ta/taskwarrior/module.nix @@ -29,7 +29,7 @@ # bash '' die() { - echo "$@" + echo "$@">&2 exit 1 } |