From 8e1fcdb108a2548228731c0601882808fe3ec8c3 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Sun, 10 Aug 2025 09:53:24 -0400 Subject: [PATCH] Version v0.2.12 - Edited build.sh --- README.md | 1 + build.sh | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 473678c..e88e271 100644 --- a/README.md +++ b/README.md @@ -199,3 +199,4 @@ When contributing: 1. The version will automatically increment on builds 2. For major features, consider manually creating minor version tags 3. Generated version files (`src/version.*`, `VERSION`) should not be committed +# Test change diff --git a/build.sh b/build.sh index a7b3d30..fd17cc1 100755 --- a/build.sh +++ b/build.sh @@ -57,8 +57,20 @@ increment_version() { print_warning "Failed to stage changes (maybe not a git repository)" fi - # Commit changes with version message - if git commit -m "Version $NEW_VERSION - Automatic version increment" 2>/dev/null; then + # Prompt for commit message + echo "" + print_status "Please enter a meaningful commit message for version $NEW_VERSION:" + echo -n "> " + read -r COMMIT_MESSAGE + + # Check if user provided a message + if [[ -z "$COMMIT_MESSAGE" ]]; then + print_warning "No commit message provided. Using default message." + COMMIT_MESSAGE="Version $NEW_VERSION - Automatic version increment" + fi + + # Commit changes with user-provided message + if git commit -m "Version $NEW_VERSION - $COMMIT_MESSAGE" 2>/dev/null; then print_success "Committed changes for version $NEW_VERSION" else print_warning "Failed to commit changes (maybe no changes to commit or not a git repository)"