You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by po...@apache.org on 2021/05/18 11:19:25 UTC

[creadur-whisker] branch master updated: Do not clean before printing updates

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

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-whisker.git


The following commit(s) were added to refs/heads/master by this push:
     new 36a64dd  Do not clean before printing updates
36a64dd is described below

commit 36a64ddae3bdf7a121b8bf837f26d5c2d46925a6
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Tue May 18 13:19:16 2021 +0200

    Do not clean before printing updates
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index bb011f6..7d9e063 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -97,7 +97,7 @@ pipeline {
         stage('Print available updates') {
             steps {
                 echo 'Show available plugin and dependency updates'
-                sh 'mvn clean versions:display-dependency-updates versions:display-plugin-updates enforcer:display-info -U -B'
+                sh 'mvn versions:display-dependency-updates versions:display-plugin-updates enforcer:display-info -U -B'
             }
         }