summaryrefslogtreecommitdiffstats
path: root/jjb/deb_dpdk/include-raw-deb_dpdk-pkg-push.sh
blob: 8e03405f2443c69d19b562a4573f3dda67bc35b2 (plain)
1
2
3
4
5
6
7
#!/bin/bash
DEBS=$(find . -type f -iname '*.deb')
echo "Found DEBS=${DEBS}"
for i in $DEBS
do
    push_deb "$i"
done