diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-10-29 22:05:05 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-10-29 22:05:05 (GMT) |
commit | 9648591d3d681520a9d5608a78432a7c1b294acb (patch) | |
tree | 6078c7815e4879ff3b495a31dc0867c96e4c293b | |
parent | 0a9236e84a13f897345bab13ca30cf01960ed6a1 (diff) | |
download | hdf5-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-x | bin/chkcopyright | 6 |
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 |