File: check-long-description

package info (click to toggle)
roundcube-plugins-extra 1.3.8-20190219
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,684 kB
  • sloc: php: 10,020; sh: 91; xml: 90; makefile: 59; python: 54; 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