1 2 3 4 5 6 7 8 9 10 11# Add common bun installation paths to PATH export PATH="/opt/homebrew/bin:$HOME/.bun/bin:$PATH" # Run commitlint if bunx is available if command -v bunx >/dev/null 2>&1; then bunx commitlint --edit $1 else echo "โ ๏ธ bunx not found in PATH, skipping commitlint" exit 0 fi