File: check-long-description

package info (click to toggle)
roundcube-plugins-extra 0.7-20120110
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,372 kB
  • sloc: php: 10,427; xml: 574; sh: 75; makefile: 53; awk: 51
file content (16 lines) | stat: -rwxr-xr-x 301 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

. debian/scripts/plugin-functions.sh

MISSING=""
for plugin in $(get_plugins); do
	if ! grep -q --fixed-strings -e "$plugin" debian/control; then
		MISSING="${MISSING:+$MISSING, }$plugin"
	fi
done
if [ "$MISSING" ]; then
	echo "Missing from debian/control: $MISSING" >&2
	exit 1
fi