From e2b2fdf440dffc719cb966bd3b1193ddf0ffb5ce Mon Sep 17 00:00:00 2001
From: Christian Poessinger <christian@poessinger.com>
Date: Mon, 22 Jun 2020 17:52:03 +0200
Subject: Jenkins: lib: T2625: remove debug output

---
 vars/buildPackage.groovy | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/vars/buildPackage.groovy b/vars/buildPackage.groovy
index a222ba19..8b690d45 100644
--- a/vars/buildPackage.groovy
+++ b/vars/buildPackage.groovy
@@ -91,16 +91,12 @@ def call(description=null, pkgList=null, buildCmd=null) {
                             def commitId = sh(returnStdout: true, script: 'git rev-parse --short=11 HEAD').trim()
                             currentBuild.description = sprintf('Git SHA1: %s', commitId[-11..-1])
 
-                            sh "pwd; ls -al"
-
                             if (pkgList) {
                                 // Fetch individual package source code, but only if a URL is defined, this will
                                 // let us reuse this script for packages like vyos-1x which ship a Jenkinfile in
                                 // their repositories root folder.
                                 pkgList.each { pkg ->
                                     dir(env.BASE_DIR + pkg.name) {
-                                        sh "pwd; ls -al"
-
                                         checkout([$class: 'GitSCM',
                                             doGenerateSubmoduleConfigurations: false,
                                             extensions: [[$class: 'CleanCheckout']],
@@ -132,7 +128,6 @@ def call(description=null, pkgList=null, buildCmd=null) {
                             if (pkgList) {
                                 pkgList.each { pkg ->
                                     dir(env.BASE_DIR + pkg.name) {
-                                        sh "pwd; ls -al"
                                         sh pkg.buildCmd
                                     }
                                 }
@@ -185,8 +180,6 @@ def call(description=null, pkgList=null, buildCmd=null) {
                                 if (env.DEBIAN_ARCH != 'all')
                                     ARCH_OPT = '-A ' + env.DEBIAN_ARCH
 
-                                sh "pwd; ls -al"
-
                                 files = findFiles(glob: '**/*.deb')
                                 if (files) {
                                     echo "Uploading package(s) and updating package(s) in the repository ..."
-- 
cgit v1.2.3