This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-website.git
The following commit(s) were added to refs/heads/master by this push: new dda5214 refactor: make git commands quiet dda5214 is described below commit dda521493a7ff41fb6afb99340f7b5821d954153 Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Tue Nov 3 14:46:10 2020 +0100 refactor: make git commands quiet This makes the build log on CI easier to read. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7077d55..7c5e010 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -87,8 +87,8 @@ pipeline { dir('deploy/staging') { deleteDir() sh 'git clone -b asf-site https://gitbox.apache.org/repos/asf/camel-website.git .' - sh 'git -c core.editor="sed -i 2,/$(git log --skip=9 -1 --pretty=format:%h)/s/^pick/squash/" rebase --interactive 1586f65bf7f24784dc99e22aff08e44c7dbb1920' // squash all but initial and last 9 commits - sh 'git rm -r *' + sh 'git -c core.editor="sed -i 2,/$(git log --skip=9 -1 --pretty=format:%h)/s/^pick/squash/" rebase -q --interactive 1586f65bf7f24784dc99e22aff08e44c7dbb1920' // squash all but initial and last 9 commits + sh 'git rm -q -r *' sh "cp -R $WORKSPACE/camel-website/public/. ." sh 'git add .' sh 'git commit -m "Website updated to $GIT_COMMIT"'