This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git
The following commit(s) were added to refs/heads/master by this push: new ca9f7447e Simplifies docker command ca9f7447e is described below commit ca9f7447e7a885608fa29e4327d14678ab56cb09 Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Fri Oct 7 09:21:06 2022 +0200 Simplifies docker command --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c6c02aa39..6c8317b2c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,12 +19,11 @@ pipeline { agent { docker { image 'jekyll/builder:4.2.2' - args '-v $WORKSPACE:/srv/jekyll' } } steps { sh """ - bundle exec jekyll build + jekyll build """ } }