Files
2025-12-02 21:46:58 -08:00

8 lines
116 B
Bash
Executable File

#!/bin/sh
set -e
grep -nHR NOCOMMIT src/ || exit 0
echo "Failed: one or more NOCOMMIT comments were found"
exit 1