From: cajus Date: Tue, 3 Jun 2008 19:30:50 +0000 (+0000) Subject: Added dh-make-gosa check X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=288df2245c24fcb07a7e7d3393aa1a5834c868e3;p=gosa.git Added dh-make-gosa check git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11184 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/contrib/make-gosa-package b/gosa-core/contrib/make-gosa-package index 1687f42a3..8dc7bc478 100755 --- a/gosa-core/contrib/make-gosa-package +++ b/gosa-core/contrib/make-gosa-package @@ -44,6 +44,11 @@ usage() { exit 1 } +if ! which dh-make-gosa &> /dev/null; then + echo "Error: cannot find dh-make-gosa binary in path!"; + exit 1 +fi + # Import command line parameters PARMS=`getopt -o brscip:,h --long branch,changelog,plugins,section,si-section,release:,help -n "${0##*/}" -- "$@"` eval set -- "$PARMS"