diff --git a/lib/routes.sh b/lib/routes.sh index 8588f20..7401dd2 100755 --- a/lib/routes.sh +++ b/lib/routes.sh @@ -11,9 +11,11 @@ if [ ! -d "$BOOTSTRAP_DIR/lib" ]; then fi export BOOTSTRAP_DIR -# Source common library +# Source libraries if [ -f "$BOOTSTRAP_DIR/lib/common.sh" ]; then . "$BOOTSTRAP_DIR/lib/common.sh" + . "$BOOTSTRAP_DIR/lib/platform.sh" + . "$BOOTSTRAP_DIR/lib/shell_config.sh" else echo "Error: Bootstrap libraries not found at $BOOTSTRAP_DIR/lib/" >&2 exit 1 diff --git a/scripts/pre-commit b/scripts/pre-commit index d550057..a87f6f9 100644 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -9,41 +9,3 @@ if [ -f "./scripts/generate_registry.sh" ]; then ./scripts/generate_registry.sh git add lib/registry.sh fi - -VERSION_FILE="VERSION" - -if [ ! -f "$VERSION_FILE" ]; then - echo "1.0.0" > "$VERSION_FILE" - git add "$VERSION_FILE" - exit 0 -fi - -# Check if there are staged changes other than VERSION, documentation (*.md), or installers folder -if ! git diff --cached --name-only | grep -Ev "^($VERSION_FILE$|.*\.md$|^installers/)" | grep -q .; then - # No other files staged, skip version bump - exit 0 -fi - -# Read current version -current_version=$(cat "$VERSION_FILE" | tr -d '[:space:]') - -# Basic regex validation for semantic versioning (X.Y.Z) -if [[ ! "$current_version" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - echo "Error: Current version '$current_version' in $VERSION_FILE is not in X.Y.Z format." >&2 - exit 1 -fi - -# Parse version components -IFS='.' read -r major minor patch <<< "$current_version" - -# Increment patch version -patch=$((patch + 1)) -new_version="$major.$minor.$patch" - -# Write to VERSION file -echo "$new_version" > "$VERSION_FILE" - -# Add VERSION file to the commit -git add "$VERSION_FILE" - -echo "[pre-commit] Automatically bumped version from $current_version to $new_version"