This is an automated email from the ASF dual-hosted git repository.
echauchot pushed a commit to branch release_utils
in repository
https://gitbox.apache.org/repos/asf/flink-connector-shared-utils.git
The following commit(s) were added to refs/heads/release_utils by this push:
new a75b89e [hotfix] Exclude whole tools directory instead of
tools/releasing/shared from source release
a75b89e is described below
commit a75b89ee3f8c9a03e97ead2d0bd9d5b7bb02b51a
Author: Etienne Chauchot <[email protected]>
AuthorDate: Fri Feb 16 14:21:45 2024 +0100
[hotfix] Exclude whole tools directory instead of tools/releasing/shared
from source release
---
_utils.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/_utils.sh b/_utils.sh
index b1d03b2..da7fcb5 100644
--- a/_utils.sh
+++ b/_utils.sh
@@ -49,7 +49,8 @@ function create_pristine_source {
--exclude ".idea" --exclude "*.iml" \
--exclude ".DS_Store" \
--exclude ".asf.yaml" \
- --exclude "target" --exclude "tools/releasing/shared" \
+ --exclude "target" \
+ --exclude "tools" \
"${clone_dir}/" "${clean_dir}"
rm -rf "${clone_dir}"