aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-01-26 16:39:08 -0600
committerChristian Cleberg <hello@cleberg.net>2025-01-26 16:39:08 -0600
commit30a666adc45c81c691e07ed7322072b298751ca2 (patch)
tree35c7ebe935079c901e8fd88a5bbd91c341fabaa5 /utils
parentdbcec87682afbb2d2bcb3fbeb397a94441a1f8cd (diff)
downloadcleberg.net-30a666adc45c81c691e07ed7322072b298751ca2.tar.gz
cleberg.net-30a666adc45c81c691e07ed7322072b298751ca2.tar.bz2
cleberg.net-30a666adc45c81c691e07ed7322072b298751ca2.zip
add systemd note to transmission post
Diffstat (limited to 'utils')
-rw-r--r--utils/hooks/pre-commit8
1 files changed, 0 insertions, 8 deletions
diff --git a/utils/hooks/pre-commit b/utils/hooks/pre-commit
deleted file mode 100644
index 69883fc..0000000
--- a/utils/hooks/pre-commit
+++ /dev/null
@@ -1,8 +0,0 @@
-# .git/hooks/pre-commit
-#!/bin/bash
-for file in $(git diff --cached --name-only | grep -E '\.org$'); do
- if ! grep -q "^#\+TITLE:" "$file"; then
- echo "Error: $file is missing a TITLE."
- exit 1
- fi
-done