]> git.donarmstrong.com Git - debhelper.git/blob - dh_testdir
r1: Initial revision
[debhelper.git] / dh_testdir
1 #!/bin/sh -e
2 #
3 # Checks to make sure we are building the package in the right directory.
4 # Tests for the existance of debian/control, and for the existance
5 # of any other files you specify on the command line.
6
7 PATH=debian:$PATH:/usr/lib/debhelper
8 source dh_lib
9
10 for file in debian/control $@; do
11         if [ ! -e "$file" ] ; then
12                 error "\"$file\" not found. Are you sure you are in the correct directory?"
13         fi
14 done