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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop-website.git

commit ca7df733b4b6c2e21ba54461f4bf1d93a9d9fed2
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Wed Oct 14 18:13:59 2020 +0200

    fix remove to exclude hidden files
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 177d047..b2cb267 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -110,7 +110,7 @@ pipeline {
                 dir('deploy/staging') {
                     deleteDir()
                     sh 'git clone -b asf-site 
https://gitbox.apache.org/repos/asf/incubator-hop-website.git .'
-                    sh "git rm -r !(.asf.yaml)"
+                    sh "git rm -f $(find . -not -path '*/\\.*' -type f  \( ! 
-iname \".*\" \))"
                     sh "cp -R $WORKSPACE/hop-website/public/. ."
                     sh 'git add .'
                     sh 'git commit -m "Website updated to $(git rev-parse 
--short HEAD)"'

Reply via email to