This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch release/10.0.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git

commit 689ac0408ea23f641d8a6835b031117204ad1242
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

Reply via email to