debian-mirror-gitlab/debian/upstream-file-count-check.sh

10 lines
366 B
Bash
Raw Normal View History

2016-02-13 19:38:52 +05:30
ucount=$(ls -1 | wc -l)
dcount=$(cat debian/install |cut -d' ' -f1|grep -v debian |wc -l)
ignored=5
if ! [ $(echo "$ucount" - "$dcount"|bc) -eq $ignored ]; then
echo "Found new files added by upstream and not added to debian/install"
echo "Add them to debian/install or adjust 'ignored=5'"
echo "in debian/upstream-file-count-check.sh as required"
exit 1
fi