This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git
The following commit(s) were added to refs/heads/main by this push:
new c30aac3 Fix `find`
c30aac3 is described below
commit c30aac30e744067dcbf4c3a22d077eb317bf8f1b
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Mon Sep 4 21:21:19 2023 +0200
Fix `find`
---
.github/workflows/deploy-release-reusable.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/deploy-release-reusable.yml
b/.github/workflows/deploy-release-reusable.yml
index 9544f37..c9dec73 100644
--- a/.github/workflows/deploy-release-reusable.yml
+++ b/.github/workflows/deploy-release-reusable.yml
@@ -140,7 +140,7 @@ jobs:
cd "$PROJECT_NAME"
# Clean up old files
- find . -name "$DIST_FILENAME_PREFIX"* -type f -print0 | xargs -0 -r
svn delete
+ find . -name "${DIST_FILENAME_PREFIX}*" -type f -print0 | xargs -0
-r svn delete
# Generate emails
for EMAIL_TYPE in vote announce; do