mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
16 lines
364 B
Bash
Executable file
16 lines
364 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# The on-exit event is triggered once, after all processing is complete.
|
|
# This hooks script has no effect on processing.
|
|
|
|
# Input:
|
|
# - Read-only line of JSON for each task added/modified
|
|
|
|
# Output:
|
|
# - Optional feedback/error.
|
|
echo 'FEEDBACK'
|
|
|
|
# Status:
|
|
# - 0: JSON ignored, non-JSON is feedback.
|
|
# - non-0: JSON ignored, non-JSON is error.
|
|
exit 0
|