Publish Honeycomb deb package 53/2453/2
authorMaros Marsalek <mmarsale@cisco.com>
Mon, 22 Aug 2016 12:44:03 +0000 (14:44 +0200)
committerMaros Marsalek <mmarsale@cisco.com>
Mon, 22 Aug 2016 12:47:38 +0000 (14:47 +0200)
Change-Id: I9d7614eb4d0586ba42d1156d119c68e8bac285a1
Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
jjb/honeycomb/include-raw-honeycomb-pkg-push.sh

index c501a08..53ef2ca 100644 (file)
@@ -2,7 +2,6 @@
 if [ "${OS}" == "centos7" ]; then
 
     # Build the rpms
-
     ./packaging/rpm/rpmbuild.sh
 
     # Find the files
@@ -13,4 +12,15 @@ if [ "${OS}" == "centos7" ]; then
     do
         push_rpm "$i"
     done
-fi
\ No newline at end of file
+elif [ "${OS}" == "ubuntu1404" ]; then
+
+    # Build the rpms
+    ./packaging/deb/debuild.sh
+
+    # Find the files
+    DEBS=$(find . -type f -iname '*.deb')
+    for i in $DEBS
+    do
+        push_deb "$i"
+    done
+fi