mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
17 lines
339 B
Bash
Executable file
17 lines
339 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# The on-launch event is triggered once, after initialization, before any
|
|
# processing occurs. This hooks script has no effect on processing.
|
|
|
|
# Input:
|
|
# - None
|
|
|
|
# Output:
|
|
# - Optional feedback/error.
|
|
echo 'on-launch'
|
|
|
|
# Status:
|
|
# - 0: JSON ignored, non-JSON is feedback.
|
|
# - non-0: JSON ignored, non-JSON is error.
|
|
exit 0
|
|
|