summaryrefslogtreecommitdiff
path: root/dh_testroot
blob: c62894c74cbe6b7e83ab1662f5a686ef5e4fdb69 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl -w
#
# Checks to make sure you are root.

BEGIN { push @INC, "debian", "/usr/share/debhelper" }
use Dh_Lib;

if ($< != 0) {
	error("You must run this as root.");
}