summaryrefslogtreecommitdiffstats
path: root/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
blob: c501a08f1b1124472a4d04679b2cbdf8fdb2d63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
if [ "${OS}" == "centos7" ]; then

    # Build the rpms

    ./packaging/rpm/rpmbuild.sh

    # Find the files
    RPMS=$(find . -type f -iname '*.rpm')
    SRPMS=$(find . -type f -iname '*.srpm')
    SRCRPMS=$(find . -type f -name '*.src.rpm')
    for i in $RPMS $SRPMS $SRCRPMS
    do
        push_rpm "$i"
    done
fi