1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-11 21:01:54 +02:00

try to add version to commit msg

This commit is contained in:
2024-06-04 20:21:12 +02:00
parent c5981cdeb3
commit 0bda9e9997
3 changed files with 7 additions and 5 deletions

View File

@ -121,9 +121,11 @@ fi
# Prepend the version number to the commit message
if [ -f "$COMMIT_MSG_PATH" ]; then
# Prepend the version number
echo "(v${currentversion}) ${COMMIT_MSG}" > "$COMMIT_MSG_PATH"
echo "- prepended version number to commit message"
COMMIT_MSG=$(cat "$COMMIT_MSG_PATH")
echo "Current commit message: $COMMIT_MSG" # Debug line
echo "(v${currentversion}) ${COMMIT_MSG}" > "$COMMIT_MSG_PATH"
echo "- prepended version number to commit message"
echo "Updated commit message: $(cat "$COMMIT_MSG_PATH")" # Debug line
else
echo ""
echo "Commit message file not found. Unable to prepend version number."