summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2005-10-29 22:05:05 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2005-10-29 22:05:05 (GMT)
commit9648591d3d681520a9d5608a78432a7c1b294acb (patch)
tree6078c7815e4879ff3b495a31dc0867c96e4c293b
parent0a9236e84a13f897345bab13ca30cf01960ed6a1 (diff)
downloadhdf5-9648591d3d681520a9d5608a78432a7c1b294acb.zip
hdf5-9648591d3d681520a9d5608a78432a7c1b294acb.tar.gz
hdf5-9648591d3d681520a9d5608a78432a7c1b294acb.tar.bz2
[svn-r11623] Purpose:
Added *.jpg and *.hdf5 as binary data files to be ignored. Platforms tested: heping.
-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