7 lines
123 B
Bash
Executable File
7 lines
123 B
Bash
Executable File
#!/bin/sh
|
|
git grep '.\]\]>' *.Tc*
|
|
if test $? -ne 1; then
|
|
echo >&2 "code before double square brackets found"
|
|
exit 1
|
|
fi
|