summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh b/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh
index c4f4885b0..4cfd30007 100644
--- a/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh
+++ b/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh
@@ -1,9 +1,11 @@
#!/bin/bash
# basic build script example
set -e -o pipefail
+echo "Looking for jars/debs/rpms to publish"
if [ "${OS}" == "ubuntu1404" ]; then
# Find the files
DEBS=$(find . -type f -iname '*.deb')
+ echo "Found DEBS=${DEBS}"
for i in $DEBS
do
push_deb "$i"
@@ -21,6 +23,7 @@ elif [ "${OS}" == "ubuntu1604" ]; then
# Find the files
DEBS=$(find . -type f -iname '*.deb')
+ echo "Found DEBS=${DEBS}"
for i in $DEBS
do
push_deb "$i"
@@ -31,6 +34,9 @@ elif [ "${OS}" == "centos7" ]; then
RPMS=$(find . -type f -iname '*.rpm')
SRPMS=$(find . -type f -iname '*.srpm')
SRCRPMS=$(find . -type f -name '*.src.rpm')
+ echo "Found RPMS=${RPMS}"
+ echo "Found SRPMS=${SRPMS}"
+ echo "Found SRCRPMS=${SRCRPMS}"
for i in $RPMS $SRPMS $SRCRPMS
do
push_rpm "$i"