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
"$EDITOR" "$file"
commit_changes "$file" "Edited $file"
commit_changes "$file" "Edit $file"
# TODO: Update $ZET_TMP if the title is changed.
else
@ -121,7 +121,7 @@ new_zet() {
"$EDITOR" "$filename"
run_git_command add --intent-to-add "$filename"
commit_changes "$filename" "Added $filename"
commit_changes "$filename" "Add $filename"
}
run_git_command() {