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

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new f885efb  cleanup workspace
f885efb is described below

commit f885efbb1803dcdba903efce4fcdc92462465563
Author: olivier lamy <[email protected]>
AuthorDate: Sun Dec 30 13:34:49 2018 +1000

    cleanup workspace
    
    Signed-off-by: olivier lamy <[email protected]>
---
 vars/asfStandardBuild.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index df60d6d..e5446e5 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -57,19 +57,19 @@ def call(Map params = [:]) {
       }
       unstable {
         script{
-          asfStandardBuild.notifyBuild( "Unstable Build ")
+          notifyBuild( "Unstable Build ")
         }
       }
       failure {
         script{
-          asfStandardBuild.notifyBuild( "Error in redback core build ")
+          notifyBuild( "Error in build ")
         }
       }
       success {
         script {
           def previousResult = currentBuild.previousBuild?.result
           if (previousResult && !currentBuild.resultIsWorseOrEqualTo( 
previousResult ) ) {
-            asfStandardBuild.notifyBuild( "Fixed" )
+            notifyBuild( "Fixed" )
           }
         }
       }

Reply via email to