VPP: add ubuntu1804 to maven push options 94/12294/1
authorEd Kern <ejk@cisco.com>
Mon, 30 Apr 2018 14:55:09 +0000 (08:55 -0600)
committerEd Kern <ejk@cisco.com>
Mon, 30 Apr 2018 14:55:09 +0000 (08:55 -0600)
Have to call out new ubuntu specifically for maven
push script to deal with it properly.

Change-Id: Id012ae87acc997279612e5785df89c8e3362f82c
Signed-off-by: Ed Kern <ejk@cisco.com>
jjb/vpp/include-raw-vpp-maven-push.sh

index 086258e..6ce3b2c 100644 (file)
@@ -19,6 +19,19 @@ if [ "${OS}" == "ubuntu1604" ]; then
         push_jar "$i"
     done
 
+    for i in $DEBS
+    do
+        push_deb "$i"
+    done
+elif [ "${OS}" == "ubuntu1804" ]; then
+    # Find the files
+    JARS=$(find . -type f -iname '*.jar')
+    DEBS=$(find . -type f -iname '*.deb')
+    for i in $JARS
+    do
+        push_jar "$i"
+    done
+
     for i in $DEBS
     do
         push_deb "$i"