summaryrefslogtreecommitdiff
path: root/.task
diff options
context:
space:
mode:
authorTom Barrett <tom@tombarrett.xyz>2022-04-10 20:04:38 +0200
committerTom Barrett <tom@tombarrett.xyz>2022-04-10 20:04:38 +0200
commit0a11290556191fe5d34784acfb7a430e71865c42 (patch)
tree1250317ebe5bd357869dab1eebd7e8440e9523f4 /.task
parentc7a0f7e4c03fdc3ef7d25c6cc4fbe7cb73ca7f5e (diff)
no more taskwarrior
Diffstat (limited to '.task')
-rwxr-xr-x.task/hooks/on-exit_git8
1 files changed, 0 insertions, 8 deletions
diff --git a/.task/hooks/on-exit_git b/.task/hooks/on-exit_git
deleted file mode 100755
index 833be0a..0000000
--- a/.task/hooks/on-exit_git
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-if [[ $2 == *"add"* ]] || [[ $2 == *"done"* ]] ; then
- wget -q --spider http://tombarrett.xyz
- if [ $? -eq 0 ] ; then
- git -C ~/.task/ commit -a -m "$2"
- git -C ~/.task/ push
- fi
-fi