diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2024-02-13 14:42:39 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2024-02-14 22:11:04 (GMT) |
commit | ca789406691d76d8c796ea05304a16a4aca4fa6f (patch) | |
tree | d3343e5055a3b9244f127ac33df12a106440079e /bin/release | |
parent | db45d891ea613febcb5a1fa42f316a356b88a7b9 (diff) | |
download | hdf5-ca789406691d76d8c796ea05304a16a4aca4fa6f.zip hdf5-ca789406691d76d8c796ea05304a16a4aca4fa6f.tar.gz hdf5-ca789406691d76d8c796ea05304a16a4aca4fa6f.tar.bz2 |
Don't add files and directories with names that begin with ., or that match *autom4te* to release tar & zip files. (#4009)
Filter messages with 'ulimit -s' out of test output for runTest.cmake.
Diffstat (limited to 'bin/release')
-rwxr-xr-x | bin/release | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/release b/bin/release index 26a756c..5eb8b8c 100755 --- a/bin/release +++ b/bin/release @@ -466,7 +466,7 @@ done # Create the tar file test "$verbose" && echo " Running tar..." 1>&2 -(cd "$tmpdir" && exec tar -ch --exclude-vcs -f "$HDF5_VERS.tar" "./$HDF5_IN_VERS" || exit 1 ) +(cd "$tmpdir" && exec tar -ch --exclude-vcs --exclude=*autom4te* --exclude=.clang-format --exclude=.codespellrc --exclude=.devcontainer --exclude=.git* --exclude=.h5chkright.ini -f "$HDF5_VERS.tar" "./$HDF5_IN_VERS" || exit 1 ) # Compress #SHA256=$HDF5_VERS.sha256 |