]> git.donarmstrong.com Git - debhelper.git/blob - dh_testroot
r1: Initial revision
[debhelper.git] / dh_testroot
1 #!/bin/sh -e
2 #
3 # Checks to make sure you are root.
4
5 PATH=debian:$PATH:/usr/lib/debhelper
6 source dh_lib
7
8 if  [ "`whoami`" != root ]; then
9         error "You must run this as root."
10 fi