#!/bin/bash
# Left-shift DevOps: Verify environment before checks
if ! command -v make >/dev/null 2>&1; then
  echo "❌ Error: 'make' not found. Quality gates cannot run."
  exit 1
fi
make pre-commit
