Update commit messages

This commit is contained in:
Oliver Davies 2025-09-07 09:46:42 +01:00
parent e4615e0f4a
commit 2394b79904

4
zet
View file

@ -59,7 +59,7 @@ edit_zet() {
if [[ -f "$file" ]]; then if [[ -f "$file" ]]; then
"$EDITOR" "$file" "$EDITOR" "$file"
commit_changes "$file" "Edited $file" commit_changes "$file" "Edit $file"
# TODO: Update $ZET_TMP if the title is changed. # TODO: Update $ZET_TMP if the title is changed.
else else
@ -121,7 +121,7 @@ new_zet() {
"$EDITOR" "$filename" "$EDITOR" "$filename"
run_git_command add --intent-to-add "$filename" run_git_command add --intent-to-add "$filename"
commit_changes "$filename" "Added $filename" commit_changes "$filename" "Add $filename"
} }
run_git_command() { run_git_command() {