summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/chkcopyright6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/chkcopyright b/bin/chkcopyright
index d46ad4c..00cf7ee 100755
--- a/bin/chkcopyright
+++ b/bin/chkcopyright
@@ -446,10 +446,14 @@ while read file; do
*.sh | *.sh.in | *Makefile | *Makefile.in | *Makefile.am )
SHELL_FILE ${file}
;;
- *.h5 )
+ *.h5 | *.hdf5 )
# Ignore HDF5 data files
continue
;;
+ *.jpg )
+ # Ignore binary data files
+ continue
+ ;;
*CVS/* )
# Ignore CVS control files.
continue