Files
Motion_test/check_code_before_sq_brackets.sh
Federico Rojas 72fa809ac4 Add two pipeline checks
Add file check_code_before_sq_brackets.sh
Add file check_no_lineids.sh
2023-02-03 15:30:11 +01:00

7 lines
123 B
Bash

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