summaryrefslogtreecommitdiffstats
path: root/jjb/scripts/maven_push_functions.sh
diff options
context:
space:
mode:
authorC.J. Collier <cjcollier@linuxfoundation.org>2016-08-17 10:09:19 -0700
committerC.J. Collier <cjcollier@linuxfoundation.org>2016-09-19 11:42:01 -0700
commit7ae79a93d3fb099118950a21881fd790bc7493ec (patch)
tree543a49298953f7a0721b20f16ff1a2550782f125 /jjb/scripts/maven_push_functions.sh
parentfbb1cb04db792dfc0766076f990c9b18ed8ae133 (diff)
Source common functions from jjb
Now using !include-raw-escape to include maven push functions for vpp as done with honeycomb Change-Id: Iae34c2db057203c5ac0d5a0c8336e87725bbd394 Signed-off-by: C.J. Collier <cjcollier@linuxfoundation.org>
Diffstat (limited to 'jjb/scripts/maven_push_functions.sh')
-rw-r--r--jjb/scripts/maven_push_functions.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/jjb/scripts/maven_push_functions.sh b/jjb/scripts/maven_push_functions.sh
index 22a22cbf8..5687a562e 100644
--- a/jjb/scripts/maven_push_functions.sh
+++ b/jjb/scripts/maven_push_functions.sh
@@ -70,8 +70,10 @@ function push_deb ()
basefile=$(basename -s .deb "$debfile")
artifactId=$(echo "$basefile" | cut -f 1 -d '_')
version=$(echo "$basefile" | cut -f 2- -d '_')
+ file_type=deb
+ classifier=deb
- push_file "$debfile" "$repoId" "$url" "$version" "$artifactId" deb deb
+ push_file "$debfile" "$repoId" "$url" "$version" "$artifactId" "$file_type" "$classifier"
}
function push_rpm ()