From cc8cdbcf96bc3df1e03283b6a1b0b1996462861f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 30 Mar 2025 20:04:43 +0100 Subject: [PATCH] Remove the post title from the commit message --- run.local | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/run.local b/run.local index d44e85283..08dff63a9 100755 --- a/run.local +++ b/run.local @@ -54,9 +54,7 @@ function create-daily { # Create a commit with the appropriate date in the message git add "${filepath}" - git commit --quiet -m "Add daily email for $(date -d "${next_date}" +%d/%m/%y) - -${title}" + git commit --quiet -m "Add daily email for $(date -d "${next_date}" +%d/%m/%y)" echo "${filepath}" }