#!/bin/bash

if [ -x /usr/bin/xcrun ] ; then
    exec /usr/bin/xcrun /opt/local/libexec/llvm-20/bin/git-clang-format "${@}"
else
    exec /opt/local/libexec/llvm-20/bin/git-clang-format "${@}"
fi
